InfoConnect for Airlines
IsModified Property (HostField)
Example 


Gets 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
public bool IsModified {get;}
Remarks
It returns true if the field has been modified.
Example
HostField host;
bool IfFieldModified = host.IsModified;
See Also