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


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