The TrimLeadingWhiteSpace property specifies or returns a value indicating whether leading white-space characters are removed from the source column string copied by custom transformations.
transerver.TrimLeadingWhiteSpace [= boolean]
Part | Description |
---|---|
transerver | Expression that evaluates to an object from the Applies To list. |
boolean | If TRUE, leading white-space characters are removed from the source string. Default is FALSE. |
Boolean
Read/write
HRESULT TrimLeadingWhiteSpace(VARIANT_BOOL* pRetVal);
HRESULT TrimLeadingWhiteSpace(VARIANT_BOOL pRetVal);
White-space characters are spaces, tabs, carriage returns and linefeeds. Leading white-space characters are those that appear ahead of the first character that is not a white-space character.
The property also can be referenced through the TransformServerProperties collection with the following code:
Set transprops = transform.TransformServerProperties
transprops("TrimLeadingWhiteSpace") [= boolean]