Trimming Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies how a string type data item is trimmed.
public enum Trimming
type Trimming =
Public Enum Trimming
- Inheritance
-
Trimming
Fields
Name | Value | Description |
---|---|---|
Left | 0 | Specifies that the left white-space characters in a string are removed. |
Right | 1 | Specifies that the right white-space characters in a string are removed. |
LeftRight | 2 | Specifies that the both left and right white-space characters in a string are removed. |
None | 3 | Specifies that the no white-space characters are removed. |