Class NamedObjectsItemReplaceEventArgs
Provides data for the ItemReplaced event, including the original and new names of the replaced item.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Core
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class NamedObjectsItemReplaceEventArgs : EventArgs
Constructors
NamedObjectsItemReplaceEventArgs(String, String)
Initializes a new instance of the NamedObjectsItemReplaceEventArgs class.
Declaration
public NamedObjectsItemReplaceEventArgs(string itemName, string newItemName)
Parameters
|
System.String
itemName
Name of the item. |
|
System.String
newItemName
New name of the item. |
Properties
ItemName
Gets the original name of the item that was replaced.
Declaration
public string ItemName { get; }
Property Value
|
System.String
The name of the item. |
NewItemName
Gets the name of the replacement item.
Declaration
public string NewItemName { get; }
Property Value
|
System.String
The new name of the item. |