InfoConnect API Guide
Attachmate.Reflection.Emulation.IbmHosts Namespace / InsertProtocolOption Enumeration


In This Topic
    InsertProtocolOption Enumeration
    In This Topic
    Defines options that specify what InfoConnect does when users attempt to insert a character.
    Syntax
    'Declaration
     
    
    Public Enum InsertProtocolOption 
       Inherits System.Enum
    'Usage
     
    
    Dim instance As InsertProtocolOption
    public enum InsertProtocolOption : System.Enum 
    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