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

U Case In Place Function
Character Types Class

Public Function UCaseInPlace( _
    ByRef rValue As Variant _
    ) As Variant

"Upper Case In Place"
Convert the string argument rValue to upper-case and also return that value.

Example:
    Assuming
       Dim S As String
       S = "This is a sample."
    for example
       UCaseInPlace(S) = "THIS IS A SAMPLE."
    leaves
       S = "THIS IS A SAMPLE."
See also:
    LCaseInPlace Function
    ProperCaseInPlace Function
    UCase Function (Visual Basic)
rValue: String argument which is converted to its upper-case equivalent. Function also returns the upper-case value of rValue.
Note: Function only works for characters in the ANSI Windows character set because it uses the built-in Visual Basic UCase() function.

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