Class ContentFileRenamedEventArgs
Event parameters for the Renamed event.
Inherited Members
Namespace: Gorgon.Editor.Content
Assembly: Gorgon.Editor.API.dll
Syntax
public class ContentFileRenamedEventArgs : EventArgs
Constructors
| Edit this page View SourceContentFileRenamedEventArgs(string, string)
Initializes a new instance of the ContentFileRenamedEventArgs class.
Declaration
public ContentFileRenamedEventArgs(string oldName, string newName)
Parameters
Type | Name | Description |
---|---|---|
string | oldName | The old name. |
string | newName | The new name. |
Properties
| Edit this page View SourceNewName
Property to return the new name of the node.
Declaration
public string NewName { get; }
Property Value
Type | Description |
---|---|
string |
OldName
Property to return the old name of the node.
Declaration
public string OldName { get; }
Property Value
Type | Description |
---|---|
string |