StarStr Function
Returns a string composed of stars (asterisks).

Unit
QESBPCSConvert

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

Description
Also See: FillStr

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

Category
Extra String Handling Routines

Implementation

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


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