ListObject.RefreshDataRow(Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Updates the ListObject data row that is associated with the specified data row.
public:
void RefreshDataRow(int dataRowIndex);
public void RefreshDataRow (int dataRowIndex);
abstract member RefreshDataRow : int -> unit
Public Sub RefreshDataRow (dataRowIndex As Integer)
Parameters
- dataRowIndex
- Int32
The index of the data row in the data source.
Remarks
This method does not send changes that were made to the data in the ListObject back to the data source; it only gets information.
Use this method if the data object does not raise a notification event when the data changes, for example, if you create a class to hold data but do not include an event to notify listeners of changes. If the data object does not raise an event, the ListObject is not updated automatically.