Class PropertyEditorEventArgs
The PropertyEditorEventArgs class is a cusom EventArgs class for handling Event Args from a change in value of a property.
Inheritance
Namespace: DotNetNuke.UI.WebControls
Assembly: DotNetNuke.dll
Syntax
public class PropertyEditorEventArgs : EventArgs
Constructors
| Improve this Doc View SourcePropertyEditorEventArgs(String, Object, Object)
Initializes a new instance of the PropertyEditorEventArgs class. Constructs a new PropertyEditorEventArgs.
Declaration
public PropertyEditorEventArgs(string name, object newValue, object oldValue)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the property. |
System.Object | newValue | The new value of the property. |
System.Object | oldValue | The old value of the property. |
PropertyEditorEventArgs(String)
Initializes a new instance of the PropertyEditorEventArgs class. Constructs a new PropertyEditorEventArgs.
Declaration
public PropertyEditorEventArgs(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the property. |
Properties
| Improve this Doc View SourceChanged
Gets or sets a value indicating whether the proeprty has changed.
Declaration
public bool Changed { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | A String. |
Index
Gets or sets the Index of the Item.
Declaration
public int Index { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | An Integer. |
Key
Gets or sets the Key of the Item.
Declaration
public object Key { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An Object. |
Name
Gets or sets the Name of the Property being changed.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | A String. |
OldValue
Gets or sets the OldValue of the Property being changed.
Declaration
public object OldValue { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An Object. |
StringValue
Gets or sets the String Value of the Property being changed.
Declaration
public string StringValue { get; set; }
Property Value
Type | Description |
---|---|
System.String | An Object. |
Value
Gets or sets the Value of the Property being changed.
Declaration
public object Value { get; set; }
Property Value
Type | Description |
---|---|
System.Object | An Object. |