InfoConnect API Guide
Attachmate.Reflection.Emulation.Common Namespace / Theme Class / Modified Property
Example


In This Topic
    Modified Property (Theme)
    In This Topic
    Gets a value indicating whether the theme has been modified or not.
    Syntax
    'Declaration
     
    
    Public ReadOnly Property Modified As Boolean
    'Usage
     
    
    Dim instance As Theme
    Dim value As Boolean
     
    value = instance.Modified
    public bool Modified {get;}
    Remarks
    True indicates that the theme has been modified since the last save, false indicates that it has not been modified.
    Example
    private Theme theme;
    //Sets the theme Name.
    bool IsModified = theme.Modified;
    See Also