DashStr Function
Returns a string composed of dashes (minus signs).

Unit
QESBPCSConvert

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

Description
Also See: FillStr

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

Category
Extra String Handling Routines

Implementation

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


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