InfoConnect for Airlines
Modified Property (Theme)
Example 


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