BlankStr Function
Returns a string composed of blank spaces (ie #32).

Unit
QESBPCSConvert

Declaration
Function BlankStr(const N: LongWord): string;

Description
Also See: FillStr

Parameters
the length of the resultant string, ie the number of blanks.

Category
Extra String Handling Routines

Implementation

function BlankStr (const N: LongWord): string;
begin
     Result := FillStr (' ', N);
End;


HTML generated by Time2HELP
http://www.time2help.com