InfoConnect API Guide
Attachmate.Reflection.Emulation.Common Namespace / HostField Class / IsModified Property
Example


In This Topic
    IsModified Property (HostField)
    In This Topic
    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