TruncationMode Enumeration
Specifies how to trim characters from a string that exceeds a maximum number of characters.
Syntax
'Declaration Public Enum TruncationMode Inherits System.Enum
'Usage Dim instance As TruncationMode
public enum TruncationMode : System.Enum
Members
Member | Description |
---|---|
End | The start of a string is removed until the specified number of characters remains. (..IJKL) |
Middle | The start and end of a string is removed until the specified number of characters remains. (..EFGH..) |
None | No trimming is performed. |
Start | The end of a string is removed until the specified number of characters remains. (ABCD..) |
StartEnd | The middle of a string is removed until the specified number of characters remains (ABCD..IJKL) |
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
dotnetCHARTING.TruncationMode
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also