IGridNavigator
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
Derived Classes:
Properties
Gets the master gridelement associated with this navigator
RadGridViewElement GridViewElement { get; }
Methods
Begins grid selection
void BeginSelection(GridNavigationContext context)
An instance of GridNavigationContext.
Clears the selection
void ClearSelection()
Deletes the selected rows.
Ends selection
void EndSelection()
Initializes the IGridNavigator with the specified RadGridView
void Initialize(RadGridViewElement element)
The RadGridViewElement to associate with this object
Checks whether the specified column is the last one.
bool IsFirstColumn(GridViewColumn column)
the column to check
Returns:true if this is the last column
Checks whether the specified column is the last editable one.
bool IsFirstEditableColumn(GridViewColumn column)
the column to check
Returns:true if this is the last editable column
Checks whether the specified row is the last one.
bool IsFirstRow(GridViewRowInfo row)
the row to check
Returns:true if this is the last row
Checks whether the specified column is the first one.
bool IsLastColumn(GridViewColumn column)
the column to check
Returns:true if this is the first column
Checks whether the specified column is the first editable one.
bool IsLastEditableColumn(GridViewColumn column)
the column to check
Returns:true if this is the first editable column
Checks whether the specified row is the first one.
bool IsLastRow(GridViewRowInfo row)
the row to check
Returns:true if this is the first row
Selects the sepcified row as current and specified column as current
bool Select(GridViewRowInfo row, GridViewColumn column)
An instance of GridViewRowInfo.
columnGridViewColumnAn instance of GridViewColumn.
Returns:Select all rows and cells
void SelectAll()
Selects the first column as current column in grid
Selects the first row as current column in grid
Selects the last column as current column in grid
Selects the last row as current column in grid
Selects the next column as current column in grid
Selects the previous column as current column in grid
Selects the specified row as current row in grid
bool SelectRow(GridViewRowInfo row)
The GridViewRowInfo to be selected
Returns:true if successfull.