Reflection .NET API
Attachmate.Reflection.Emulation.IbmHosts Assembly / 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
Example
HostField host;
FieldAttributes attribute;
            
//Get FieldAttributes.
attribute = host.Attributes;
See Also