View.IsModified Property

 

Gets or sets a flag that indicates that the view has data that needs to be saved.

Namespace:   Microsoft.ManagementConsole
Assembly:  Microsoft.ManagementConsole (in Microsoft.ManagementConsole.dll)

Syntax

public bool IsModified { get; set; }
public:
property bool IsModified {
    bool get();
    void set(bool value);
}
member IsModified : bool with get, set
Public Property IsModified As Boolean

Property Value

Type: System.Boolean

true if the view is modified; otherwise false

Remarks

Note

This flag is automatically reset when data is saved, i.e., after OnSaveCustomData is called.

See Also

View Class
Microsoft.ManagementConsole Namespace

Return to top