Class CurrentCellRequestNavigateEventArgs
Provides data for CurrentCellRequestNavigate event.
Inherited Members
Namespace: Syncfusion.UI.Xaml.Grids
Assembly: Syncfusion.Grid.WinUI.dll
Syntax
public class CurrentCellRequestNavigateEventArgs : GridEventArgs
Constructors
CurrentCellRequestNavigateEventArgs(Object)
Initializes a new instance of CurrentCellRequestNavigateEventArgs class.
Declaration
public CurrentCellRequestNavigateEventArgs(object originalSource)
Parameters
Type | Name | Description |
---|---|---|
System.Object | originalSource | The source of the event. |
Properties
Handled
Gets or sets the value that indicates whether the navigation should be handled for the particular cell.
Declaration
public bool Handled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the navigation is handled; otherwise, false. |
NavigateText
Gets the navigation text when the hyperlink is activated.
Declaration
public string NavigateText { get; }
Property Value
Type | Description |
---|---|
System.String | A string that contains the text to navigate when the hyperlink is activated. |
RowColumnIndex
Gets the RowColumnIndex of the corresponding cell navigation occurs for.
Declaration
public RowColumnIndex RowColumnIndex { get; }
Property Value
Type | Description |
---|---|
RowColumnIndex | The RowColumnIndexof corresponding cell navigation occurs for. |
RowData
Gets the data item of the corresponding cell navigation occurs for.
Declaration
public object RowData { get; }
Property Value
Type | Description |
---|---|
System.Object | The data item of the corresponding cell navigation occurs for. |