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