Class CellRequestNavigateEventArgs
Represents a class which holds the properties of CellRequest Navigate Event.
Namespace: Syncfusion.UI.Xaml.CellGrid.Helpers
Assembly: Syncfusion.SfCellGrid.UWP.dll
Syntax
public class CellRequestNavigateEventArgs : GridEventArgs
Constructors
CellRequestNavigateEventArgs()
Initializes a new instance of the CellRequestNavigateEventArgs class.
Declaration
public CellRequestNavigateEventArgs()
Properties
Handled
Gets or sets a value indicating whether this event should be handled or not.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | True or false. |
Name
Gets or sets the name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | Name. |
NavigateText
Gets or sets the navigation text.
Declaration
public string NavigateText { get; set; }
Property Value
Type | Description |
---|---|
System.String | Navigation text. |
Range
Range in the Grid Where the selection need to be moved.
Declaration
public GridRangeInfo Range { get; set; }
Property Value
Type | Description |
---|---|
GridRangeInfo | Selection range. |
RowColumnIndex
Gets or sets the value of current RowColumnIndex .
Declaration
public RowColumnIndex RowColumnIndex { get; set; }
Property Value
Type | Description |
---|---|
RowColumnIndex | An instance of RowColumnIndex. |