<-- Previous || Up || Next -->

Right Justify Fill Fast Function
Formats Justifies Class

Public Function RightJustifyFillFast( _
      ByRef vValue As String _
    , ByVal vWidth As Long _
    , ByRef vFillChar As String _
    ) As String

Right justify a string.
Undersized strings are left-padded to length vWidth with fill character vFillChar.
Oversized strings are left as is.
Like the RightJustifyFast function except this one uses a fill character other than space.
"Fast" function has restrictive argument types to avoid argument fix-up code.

Examples:
    RightJustifyFillFast("This is a test.", 20, "-") = "-----This is a test."
    RightJustifyFillFast("This is a test.", 10, "-") = "This is a test."
See also:
    RightJustifyFast Function
    RightJustifyTruncateFillFast Function
    LeftJustifyFillFast Function
vValue: String which is to be right-justified.
vWidth: Length to which the string vValue will be space-filled if its length is less than vWidth.
vFillChar: String whose first character will be used to left-fill undersized vValue strings.

Copyright 1996-1999 Entisoft
Entisoft Tools is a trademark of Entisoft.