The LowerCaseString property specifies or returns a value indicating whether the alphabetical characters in the source column string copied by custom transformations are converted to lowercase characters.
transerver.LowerCaseString [= logical]
Part | Description |
---|---|
transerver | Expression that evaluates to a transformation object from the Applies To list |
logical | Boolean that specifies whether the alpha characters in the source string are converted to uppercase |
Boolean
Read/write
HRESULT LowerCaseString(VARIANT_BOOL* pRetVal);
HRESULT LowerCaseString(VARIANT_BOOL pRetVal);
The default is FALSE.
The property also can be referenced through the TransformServerProperties collection with the following code:
Set transprops = transform.TransformServerProperties
transprops("LowerCaseString") [= logical]