Reflection .NET API
Attachmate.Reflection.Emulation.IbmHosts Assembly / Attachmate.Reflection.Emulation.IbmHosts Namespace / HostField Class / IsModified Property
Example


IsModified Property
Gets a value indicating whether the field has been modified.
Syntax
'Declaration
 
Public ReadOnly Property IsModified As Boolean
 
'Usage
 
Dim instance As HostField
Dim value As Boolean
 
value = instance.IsModified
Remarks
It returns true if the field has been modified.
Example
HostField host;
bool IfFieldModified = host.IsModified;
See Also