InfoConnect API Guide
Attachmate.Reflection.Emulation.IbmHosts Namespace / HostField Class / Attributes Property
Example


In This Topic
    Attributes Property (HostField)
    In This Topic
    Gets a bit mask that contains all of the field attributes.
    Syntax
    'Declaration
     
    
    Public ReadOnly Property Attributes As FieldAttributes
    'Usage
     
    
    Dim instance As HostField
    Dim value As FieldAttributes
     
    value = instance.Attributes
    public FieldAttributes Attributes {get;}
    Example
    HostField host;
    FieldAttributes attribute;
                
    //Get FieldAttributes.
    attribute = host.Attributes;
    See Also