PrintSystemObject.Refresh Method

Definition

When overridden in a derived class, updates the properties of an object of the derived class so that its values match the values of the actual software or hardware component that the object represents.

public:
 abstract void Refresh();
public abstract void Refresh ();
abstract member Refresh : unit -> unit
Public MustOverride Sub Refresh ()

Remarks

Any changes that you have made to the properties of an object of the derived class may be lost when the Refresh of the derived class executes. The loss will occur if the changes have not yet been written to the actual software or hardware component, by using the derived class' implementation of Commit.

Applies to

See also