InterfaceIGridNavigator
This interface defines methods used to change the currently selected row and column
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public interface IGridNavigator
Properties
GridViewElement
Gets the master gridelement associated with this navigator
Declaration
RadGridViewElement GridViewElement { get; }
Property Value
Methods
BeginSelection(GridNavigationContext)
Begins grid selection
Declaration
void BeginSelection(GridNavigationContext context)
Parameters
context
An instance of GridNavigationContext.
DeleteSelectedRows()
Deletes the selected rows.
Initialize(RadGridViewElement)
Initializes the IGridNavigator with the specified RadGridView
Declaration
void Initialize(RadGridViewElement element)
Parameters
element
The RadGridViewElement to associate with this object
IsFirstColumn(GridViewColumn)
Checks whether the specified column is the last one.
Declaration
bool IsFirstColumn(GridViewColumn column)
Parameters
column
the column to check
Returns
true if this is the last column
IsFirstEditableColumn(GridViewColumn)
Checks whether the specified column is the last editable one.
Declaration
bool IsFirstEditableColumn(GridViewColumn column)
Parameters
column
the column to check
Returns
true if this is the last editable column
IsFirstRow(GridViewRowInfo)
Checks whether the specified row is the last one.
Declaration
bool IsFirstRow(GridViewRowInfo row)
Parameters
row
the row to check
Returns
true if this is the last row
IsLastColumn(GridViewColumn)
Checks whether the specified column is the first one.
Declaration
bool IsLastColumn(GridViewColumn column)
Parameters
column
the column to check
Returns
true if this is the first column
IsLastEditableColumn(GridViewColumn)
Checks whether the specified column is the first editable one.
Declaration
bool IsLastEditableColumn(GridViewColumn column)
Parameters
column
the column to check
Returns
true if this is the first editable column
IsLastRow(GridViewRowInfo)
Checks whether the specified row is the first one.
Declaration
bool IsLastRow(GridViewRowInfo row)
Parameters
row
the row to check
Returns
true if this is the first row
Select(GridViewRowInfo, GridViewColumn)
Selects the sepcified row as current and specified column as current
Declaration
bool Select(GridViewRowInfo row, GridViewColumn column)
Parameters
row
An instance of GridViewRowInfo.
column
An instance of GridViewColumn.
Returns
SelectFirstColumn()
Selects the first column as current column in grid
SelectFirstRow()
Selects the first row as current column in grid
SelectLastColumn()
Selects the last column as current column in grid
SelectLastRow()
Selects the last row as current column in grid
SelectNextColumn()
Selects the next column as current column in grid
SelectNextRow(int)
Selects the row at specified distance after the current position as current row in grid
SelectPreviousColumn()
Selects the previous column as current column in grid
SelectPreviousRow(int)
Selects the row at specified distance before the current position as current row in grid
SelectRow(GridViewRowInfo)
Selects the specified row as current row in grid
Declaration
bool SelectRow(GridViewRowInfo row)
Parameters
row
The GridViewRowInfo to be selected
Returns
true if successfull.