Interface IGridNavigator
This interface defines methods used to change the currently selected row and column
Assembly: Telerik.WinControls.GridView.dll
Syntax
public interface IGridNavigator
Properties
Gets the master gridelement associated with this navigator
Declaration
RadGridViewElement GridViewElement { get; }
Property Value
Methods
Declaration
void BeginSelection(GridNavigationContext context)
Parameters
Deletes the selected rows.
Declaration
bool DeleteSelectedRows()
Returns
Initializes the IGridNavigator with the specified RadGridView
Declaration
void Initialize(RadGridViewElement element)
Parameters
Checks whether the specified column is the last one.
Declaration
bool IsFirstColumn(GridViewColumn column)
Parameters
Returns
System.Boolean
true if this is the last column
|
Checks whether the specified column is the last editable one.
Declaration
bool IsFirstEditableColumn(GridViewColumn column)
Parameters
Returns
System.Boolean
true if this is the last editable column
|
Checks whether the specified row is the last one.
Declaration
bool IsFirstRow(GridViewRowInfo row)
Parameters
Returns
System.Boolean
true if this is the last row
|
Checks whether the specified column is the first one.
Declaration
bool IsLastColumn(GridViewColumn column)
Parameters
Returns
System.Boolean
true if this is the first column
|
Checks whether the specified column is the first editable one.
Declaration
bool IsLastEditableColumn(GridViewColumn column)
Parameters
Returns
System.Boolean
true if this is the first editable column
|
Checks whether the specified row is the first one.
Declaration
bool IsLastRow(GridViewRowInfo row)
Parameters
Returns
System.Boolean
true if this is the first row
|
Selects the sepcified row as current and specified column as current
Declaration
bool Select(GridViewRowInfo row, GridViewColumn column)
Parameters
Returns
Select all rows and cells
Declaration
Selects the first column as current column in grid
Declaration
Returns
System.Boolean
true if successfull.
|
Selects the first row as current column in grid
Declaration
Returns
System.Boolean
true if successfull.
|
Selects the last column as current column in grid
Declaration
Returns
System.Boolean
true if successfull.
|
Selects the last row as current column in grid
Declaration
Returns
System.Boolean
true if successfull.
|
Selects the next column as current column in grid
Declaration
Returns
System.Boolean
true if successfull.
|
Selects the row at specified distance after the current position as current row in grid
Declaration
bool SelectNextRow(int step)
Parameters
System.Int32
step
The distance to the row
|
Returns
System.Boolean
true if successfull.
|
Selects the previous column as current column in grid
Declaration
bool SelectPreviousColumn()
Returns
System.Boolean
true if successfull.
|
Selects the row at specified distance before the current position as current row in grid
Declaration
bool SelectPreviousRow(int step)
Parameters
System.Int32
step
The distance to the row
|
Returns
System.Boolean
true if successfull.
|
Selects the specified row as current row in grid
Declaration
bool SelectRow(GridViewRowInfo row)
Parameters
Returns
System.Boolean
true if successfull.
|
Extension Methods