Visual Basic (Declaration) | |
---|---|
Public Enum TruncationMode Inherits Enum |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public enum TruncationMode : Enum |
Member | Description |
---|---|
Start | The end of a string is removed until the specified number of characters remains. (ABCD..) |
Middle | The start and end of a string is removed until the specified number of characters remains. (..EFGH..) |
End | The start of a string is removed until the specified number of characters remains. (..IJKL) |
StartEnd | The middle of a string is removed until the specified number of characters remains (ABCD..IJKL) |
None | No trimming is performed. |
System.Object
System.ValueType
System.Enum
dotnetCHARTING.TruncationMode