Class GridQueryAllowArrowKeyNavigateToEventArgs
Provides event data for the QueryAllowArrowKeyNavigateTo event. You can set AllowNavigateTo if you want arrow keys to skip over specific display elements (e.g. skip caption rows).
Inheritance
System.Object
System.EventArgs
GridQueryAllowArrowKeyNavigateToEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: Syncfusion.Windows.Forms.Grid.Grouping
Assembly: Syncfusion.Grid.Grouping.Windows.dll
Syntax
public sealed class GridQueryAllowArrowKeyNavigateToEventArgs : SyncfusionEventArgs
Constructors
GridQueryAllowArrowKeyNavigateToEventArgs(GridTableControl, Element, Boolean)
Constructor for GridQueryAllowArrowKeyNavigateToEventArgs
Declaration
public GridQueryAllowArrowKeyNavigateToEventArgs(GridTableControl tableControl, Element element, bool allowNavigateTo)
Parameters
Type | Name | Description |
---|---|---|
GridTableControl | tableControl | The table control |
Element | element | The display element (RecordRow or CaptionRow) |
System.Boolean | allowNavigateTo | Set AllowNavigateTo to False if you want arrow keys to skip over specific display elements (e.g. skip caption rows). |
Properties
AllowNavigateTo
Set AllowNavigateTo to False if you want arrow keys to skip over specific display elements (e.g. skip caption rows)..
Declaration
public bool AllowNavigateTo { get; set; }
Property Value
Type |
---|
System.Boolean |
Element
The display element (RecordRow or CaptionRow)
Declaration
[TraceProperty(true)]
public Element Element { get; set; }
Property Value
Type |
---|
Element |
TableControl
The table control.
Declaration
[TraceProperty(true)]
public GridTableControl TableControl { get; set; }
Property Value
Type |
---|
GridTableControl |