Class GridFormulaNamedRangesEditHelper
Provides the functionality for displaying and editing a NamedRanges hash table using a CollectionEditor.
Inheritance
Inherited Members
Namespace: Syncfusion.Windows.Forms.Grid
Assembly: Syncfusion.Grid.Windows.dll
Syntax
public class GridFormulaNamedRangesEditHelper
Constructors
GridFormulaNamedRangesEditHelper()
Initializes a new instance of the GridFormulaNamedRangesEditHelper class.
Declaration
public GridFormulaNamedRangesEditHelper()
GridFormulaNamedRangesEditHelper(GridFormulaEngine)
Initializes a new instance of the GridFormulaNamedRangesEditHelper class. which allows editing an existing GridFormulaEngine.NamedRanges list.
Declaration
public GridFormulaNamedRangesEditHelper(GridFormulaEngine engine)
Parameters
Type | Name | Description |
---|---|---|
GridFormulaEngine | engine | The GridFormulaEngine object that holds the NamedRanges. |
Properties
List
Gets or sets NamedRangeList collection holding the GridFormulaEngine.NamedRange information being edited.
Declaration
public GridFormulaNamedRangesEditHelper.NamedRangeList List { get; set; }
Property Value
Type |
---|
GridFormulaNamedRangesEditHelper.NamedRangeList |
Methods
ShowNamedRangesDialog(GridFormulaEngine)
Displays a collection editor dialog for editing NamedRanges.
Declaration
public static void ShowNamedRangesDialog(GridFormulaEngine engine)
Parameters
Type | Name | Description |
---|---|---|
GridFormulaEngine | engine | The GridFormulaEngine instance whose NamedRanges are being edited. |
Events
ShowingNamedRangesDialog
Occurs immediately before the Dialog is displayed. The sender is the Dialog being shown.
Declaration
public static event ControlEventHandler ShowingNamedRangesDialog
Event Type
Type |
---|
System.Windows.Forms.ControlEventHandler |
Remarks
You can handle this event to customize the dialog to some extent.
Examples
This code changes the title of the dialog.