Share via


FormDataSource.refreshEx Method

Definition

Overloads

refreshEx()

Updates the view of the specified records.

refreshEx(Object)

refreshEx()

Updates the view of the specified records.

public:
 override void refreshEx();
public override void refreshEx ();
override this.refreshEx : unit -> unit
Public Overrides Sub refreshEx ()

Remarks

The refreshEx method can be overridden on a form data source by right-clicking the Methods node under the data source, pointing to Override Method, and then clicking refreshEx.

Applies to

refreshEx(Object)

public:
 override void refreshEx(System::Object ^ _pos);
public override void refreshEx (object _pos);
override this.refreshEx : obj -> unit
Public Overrides Sub refreshEx (_pos As Object)

Parameters

_pos
Object

The number of the record to refresh; optional. If a value of -1 is specified, all records are updated. If a value of -2 is specified, all marked records and all records that have display options specified are updated. The default value is -2.

Applies to