.netCHARTING v10.5 Documentation


dotnetCHARTING Namespace : TruncationMode Enumeration
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
MemberDescription
EndThe start of a string is removed until the specified number of characters remains. (..IJKL)
MiddleThe start and end of a string is removed until the specified number of characters remains. (..EFGH..)
NoneNo trimming is performed.
StartThe end of a string is removed until the specified number of characters remains. (ABCD..)
StartEndThe 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