| LeftAlignStr Function | 
Unit
QESBPCSConvert
Declaration
Function LeftAlignStr(const S: string; const N: LongWord): string;
Description
Also See: PadLeftStr, RightAlignStr
| Parameters | 
| S | the String to be Left Aligned. | 
| N | the length of the resultant string. | 
Category
Extra String Handling RoutinesImplementation
 
| function LeftAlignStr (const S: string; const N: LongWord): string;
begin
     Result := PadRightStr (LeftStr (S, N), N);
End; | 
|  |