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