IRowView
Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.GridView.dll
Syntax:
public interface IRowView : IGridView
Derived Classes:
Inherited Members
Properties
Gets a collection containing all visible child views
ReadOnlyCollection<IRowView> ChildViews { get; }
Gets the current GridCellElement
GridCellElement CurrentCell { get; }
Gets the addreess of the current GridCellElement
Point CurrentCellAddress { get; }
Gets the current GridRowElement
GridRowElement CurrentRow { get; }
Gets a value indicating whether the view is current
bool IsCurrentView { get; }
Gets the number of rows displayed to the user.
int RowsPerPage { get; }
VisualRows
IList<GridRowElement>
Gets the rows currently visible on screen
IList<GridRowElement> VisualRows { get; }
Methods
Begins batch update of the items.
Ends batch update of the items.
Ensures that the specified cell is visible.
bool EnsureCellVisible(GridViewRowInfo rowInfo, GridViewColumn column)
A GridViewRowInfo that specifies the cell's row
columnGridViewColumnA GridViewColumn that specifies the cell's column
Returns:Ensures that the specified row is visible.
bool EnsureRowVisible(GridViewRowInfo gridViewRowInfo)
A GridViewRowInfo that specifies the row
Returns:Gets a cell based on corresponding GridViewRowInfo and GridViewColumn
GridCellElement GetCellElement(GridViewRowInfo rowInfo, GridViewColumn column)
The corresponding GridViewRowInfo
columnGridViewColumnThe corresponding GridViewColumn
Returns:An instance to a GridCellElement if successfull, null othervise
Gets the row's visual element based on the corresponding GridViewRowInfo
GridRowElement GetRowElement(GridViewRowInfo rowInfo)
The corresponding GridViewRowInfo
Returns:An instance to a GridRowElement if successfull, null othervise
Invalidates a single cell
void InvalidateCell(GridViewRowInfo rowInfo, GridViewColumn column)
The corresponding GridViewRowInfo
columnGridViewColumnThe corresponding GridViewColumn
Invalidates a row
void InvalidateRow(GridViewRowInfo rowInfo)
The GridViewRowInfo to invalidate
Gets a value indicating whether the row is visible
bool IsRowVisible(GridViewRowInfo value)
The GridViewRowInfo to check for visibility
Returns:Returns true if the row is visible