Reflection .NET API
Attachmate.Reflection.Emulation.IbmHosts Assembly / Attachmate.Reflection.Emulation.IbmHosts Namespace / InsertProtocolOption Enumeration


InsertProtocolOption Enumeration
Defines options that specify what Reflection does when users attempt to insert a character.
Syntax
'Declaration
 
Public Enum InsertProtocolOption 
   Inherits System.Enum
 
'Usage
 
Dim instance As InsertProtocolOption
Members
MemberDescription
FirstNullMake room for the character being inserted by moving all characters to the right of the insertion point one character to the right until a null is encountered. The null is replaced by a character and all subsequent characters are unchanged. If a null is not found, the insertion fails.
FirstNullOrTrailingCharReplaces the last character in the insert arena if neither a null nor a trailing space is found.
FirstNullOrTrailingSpaceUses the same logic as FirstNull except that a trailing space can be used if a null is not found.
Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Attachmate.Reflection.Emulation.IbmHosts.InsertProtocolOption

See Also