dotnetCHARTING Send comments on this topic.
TruncationMode Enumeration
See Also  
dotnetCHARTING Namespace : TruncationMode Enumeration


Specifies how to trim characters from a string that exceeds a maximum number of characters.

Syntax

Visual Basic (Declaration) 
Public Enum TruncationMode 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As TruncationMode
C# 
public enum TruncationMode : Enum 

Members

MemberDescription
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.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         dotnetCHARTING.TruncationMode

See Also

© 2010 All Rights Reserved.