FontDialog.OnApply(EventArgs) Method

Definition

Raises the Apply event.

protected:
 virtual void OnApply(EventArgs ^ e);
protected virtual void OnApply (EventArgs e);
abstract member OnApply : EventArgs -> unit
override this.OnApply : EventArgs -> unit
Protected Overridable Sub OnApply (e As EventArgs)

Parameters

e
EventArgs

An EventArgs that contains the data.

Remarks

Raising an event invokes the event handler through a delegate. For an overview, see Handling and Raising Events.

Notes to Inheritors

When overriding OnApply(EventArgs) in a derived class, be sure to call the base class's OnApply(EventArgs) method.

Applies to

See also