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 );
Property | Description |
---|---|
|
Every time the Apply button is clicked, another System.WinForms.FontDialog.Apply event is raised.
FontDialog Class | FontDialog MembersTopic | System.WinForms Namespace | FontDialog.OnApply