Class NameEventArgs
Event arguments for Name Changed.
Namespace: Evergine.Framework.Helpers
Assembly: Evergine.Framework.dll
Syntax
public sealed class NameEventArgs : EventArgs
Constructors
NameEventArgs(string, string)
Initializes a new instance of the NameEventArgs class.
Declaration
public NameEventArgs(string oldName, string newName)
Parameters
Type | Name | Description |
---|---|---|
string | oldName | The previous name. |
string | newName | The new name. |
Properties
NewName
Gets the new name of the property.
Declaration
public string NewName { get; }
Property Value
Type | Description |
---|---|
string |
OldName
Gets the previous name of a property.
Declaration
public string OldName { get; }
Property Value
Type | Description |
---|---|
string |