NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

FontDialog Apply Event

Occurs when the user clicks the Apply button in the font dialog box.

The following declaration shows the syntax for a method that handles the Apply event.

[Visual Basic]
Private Sub FontDialogName_Apply( _
   ByVal sender As Object, _
   ByVal e As EventArgs _
)
[C#]
private void FontDialogName_Apply(
   object sender,
   EventArgs e
);
[C++]
private: void FontDialogName_Apply(
   Object* sender,
   EventArgs* e
);
[JScript]
private FontDialogName_Apply(
   sender : Object,
   e : EventArgs
);

Parameters

sender
The source of the event.
e
An EventArgs that contains the event data. The following EventArgs properties provide information specific to this event.
Property Description
ExtendedInfo
Holds a reference to an object that manages the event's state.

Remarks

Every time the Apply button is clicked, another System.WinForms.FontDialog.Apply event is raised.

See Also

FontDialog Class | FontDialog MembersTopic | System.WinForms Namespace | FontDialog.OnApply