Class GroupItemRenamedEventArgs
Provides data about the GroupBarItemRenamed and GroupViewItemRenamed events.
Inheritance
System.Object
GroupItemRenamedEventArgs
Namespace: Syncfusion.Windows.Forms.Tools
Assembly: Syncfusion.Shared.Base.dll
Syntax
public sealed class GroupItemRenamedEventArgs : EventArgs
Remarks
See GroupBar, GroupView, and GroupItemRenamedEventHandler.
Constructors
GroupItemRenamedEventArgs(Int32, String, String)
Creates a new instance of the GroupItemRenamedEventArgs class.
Declaration
public GroupItemRenamedEventArgs(int nindex, string oldtext, string newtext)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Int32 | nindex | The zero-based index of the renamed item. |
| System.String | oldtext | The old item text. |
| System.String | newtext | The new item text. |
Properties
Index
Returns the zero-based index of the renamed item.
Declaration
public int Index { get; }
Property Value
| Type | Description |
|---|---|
| System.Int32 | An integer representing the item index. |
NewLabel
Returns the new text of the item.
Declaration
public string NewLabel { get; }
Property Value
| Type |
|---|
| System.String |
Remarks
A String value.
OldLabel
Returns the old text of the item.
Declaration
public string OldLabel { get; }
Property Value
| Type |
|---|
| System.String |
Remarks
A String value.