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

L Case In Place Function
Character Types Class

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

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

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

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