BlankStr Function |
Unit
QESBPCSConvert
Declaration
Function BlankStr(const N: LongWord): string;
Description
Also See: FillStr
Parameters |
N | the length of the resultant string, ie the number of blanks. |
Category
Extra String Handling RoutinesImplementation
function BlankStr (const N: LongWord): string; begin Result := FillStr (' ', N); End; |
|