'Declaration
Public Enum InsertProtocolOption Inherits System.Enum
'Usage
Dim instance As InsertProtocolOption
public enum InsertProtocolOption : System.Enum
'Declaration
Public Enum InsertProtocolOption Inherits System.Enum
'Usage
Dim instance As InsertProtocolOption
public enum InsertProtocolOption : System.Enum
Member | Description |
---|---|
FirstNull | Make 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. |
FirstNullOrTrailingChar | Replaces the last character in the insert arena if neither a null nor a trailing space is found. |
FirstNullOrTrailingSpace | Uses the same logic as FirstNull except that a trailing space can be used if a null is not found. |
System.Object
System.ValueType
System.Enum
Attachmate.Reflection.Emulation.IbmHosts.InsertProtocolOption