Interface ISystemPropertyTracker
Version: 3.4
Used for getting the current and original value of a system property.
Namespace: StylelabsStylelabs.MStylelabs.M.ScriptingStylelabs.M.Scripting.TypesStylelabs.M.Scripting.Types.V1_0ChangeTracking
Assembly: Stylelabs.M.Scripting.Types.dll
Syntax
RequestResponse
public interface ISystemPropertyTracker
Properties
IsDirty
Gets a value indicating whether the property is dirty.
Declaration
RequestResponse
bool IsDirty { get; }
Property Value
Type | Description |
---|---|
bool |
OriginalValue
Gets the original value. This can be null is set for the first time, since there will be no previous value.
Declaration
RequestResponse
object OriginalValue { get; }
Property Value
Type | Description |
---|---|
object |
Value
Gets the current value.
Declaration
RequestResponse
object Value { get; }
Property Value
Type | Description |
---|---|
object |