Invalidate the cell at the given row.
[Visual Basic]
Overloads Public Sub RefreshCell( _
ByVal row As Integer _
)
[C#]
public void RefreshCell(
int row
);
[Delphi]
public procedure RefreshCell(
row: Int32
); overload;
Parameters
row
Row to invalidate.
Example
The following code repaints the cell in the third row:
Me.C1TrueDBGrid1.Columns(0).RefreshCell(2)
· C#
this.c1TrueDBGrid1.Columns[0].RefreshCell(2);
· Delphi
Self.C1TrueDBGrid1.Columns[0].RefreshCell(2);
See Also
C1DataColumn Class | C1DataColumn Members | C1.Win.C1TrueDBGrid Namespace | C1DataColumn.RefreshCell Overload List
Send comments about this topic to ComponentOne. Copyright © ComponentOne LLC. All rights reserved. |