Interface IGridNavigator
This interface defines methods used to change the currently selected row and column
Namespace: Telerik.WinControls.UI
Assembly: Telerik.WinControls.GridView.dll
Syntax
public interface IGridNavigator
This interface defines methods used to change the currently selected row and column
public interface IGridNavigator
Gets the master gridelement associated with this navigator
RadGridViewElement GridViewElement { get; }
RadGridViewElement
|
Begins grid selection
void BeginSelection(GridNavigationContext context)
GridNavigationContext
context
An instance of GridNavigationContext. |
Clears the selection
void ClearSelection()
Deletes the selected rows.
bool DeleteSelectedRows()
System.Boolean
|
Ends selection
void EndSelection()
Initializes the IGridNavigator with the specified RadGridView
void Initialize(RadGridViewElement element)
RadGridViewElement
element
The RadGridViewElement to associate with this object |
Checks whether the specified column is the last one.
bool IsFirstColumn(GridViewColumn column)
GridViewColumn
column
the column to check |
System.Boolean
true if this is the last column |
Checks whether the specified column is the last editable one.
bool IsFirstEditableColumn(GridViewColumn column)
GridViewColumn
column
the column to check |
System.Boolean
true if this is the last editable column |
Checks whether the specified row is the last one.
bool IsFirstRow(GridViewRowInfo row)
GridViewRowInfo
row
the row to check |
System.Boolean
true if this is the last row |
Checks whether the specified column is the first one.
bool IsLastColumn(GridViewColumn column)
GridViewColumn
column
the column to check |
System.Boolean
true if this is the first column |
Checks whether the specified column is the first editable one.
bool IsLastEditableColumn(GridViewColumn column)
GridViewColumn
column
the column to check |
System.Boolean
true if this is the first editable column |
Checks whether the specified row is the first one.
bool IsLastRow(GridViewRowInfo row)
GridViewRowInfo
row
the row to check |
System.Boolean
true if this is the first row |
Selects the sepcified row as current and specified column as current
bool Select(GridViewRowInfo row, GridViewColumn column)
GridViewRowInfo
row
An instance of GridViewRowInfo. |
GridViewColumn
column
An instance of GridViewColumn. |
System.Boolean
|
Select all rows and cells
void SelectAll()
Selects the first column as current column in grid
bool SelectFirstColumn()
System.Boolean
true if successfull. |
Selects the first row as current column in grid
bool SelectFirstRow()
System.Boolean
true if successfull. |
Selects the last column as current column in grid
bool SelectLastColumn()
System.Boolean
true if successfull. |
Selects the last row as current column in grid
bool SelectLastRow()
System.Boolean
true if successfull. |
Selects the next column as current column in grid
bool SelectNextColumn()
System.Boolean
true if successfull. |
Selects the row at specified distance after the current position as current row in grid
bool SelectNextRow(int step)
System.Int32
step
The distance to the row |
System.Boolean
true if successfull. |
Selects the previous column as current column in grid
bool SelectPreviousColumn()
System.Boolean
true if successfull. |
Selects the row at specified distance before the current position as current row in grid
bool SelectPreviousRow(int step)
System.Int32
step
The distance to the row |
System.Boolean
true if successfull. |
Selects the specified row as current row in grid
bool SelectRow(GridViewRowInfo row)
GridViewRowInfo
row
The GridViewRowInfo to be selected |
System.Boolean
true if successfull. |
Copyright © 2018 Progress Software Corporation and/or its subsidiaries or affiliates.
All Rights Reserved.
Progress, Telerik, and certain product names used herein are trademarks or registered trademarks of Progress Software Corporation and/or one of its subsidiaries or affiliates in the U.S. and/or other countries. See Trademarks for appropriate markings.