InfoConnect for Airlines
Attributes Property (HostField)
Example 


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