UnderscoreStr Function
Returns a string composed of Underscores (Shift-Minus).

Unit
QESBPCSConvert

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

Description
Also See: FillStr

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

Category
Extra String Handling Routines

Implementation

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


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