FontDialog::ShowApply Property
.NET Framework (current version)
Gets or sets a value indicating whether the dialog box contains an Apply button.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
Property Value
Type: System::Booleantrue if the dialog box contains an Apply button; otherwise, false. The default value is false.
The following code example shows how to apply the selections in a FontDialog to the text in a RichTextBox. In the event handler that displays the dialog box, the example initializes the ShowApply property to true and then displays the FontDialog. In the Apply event handler, the Font property is assigned to the Control::Font property.
private: void button1_Click( Object^ /*sender*/, System::EventArgs^ /*e*/ ) { // Sets the ShowApply property, then displays the dialog. fontDialog1->ShowApply = true; fontDialog1->ShowDialog(); } void fontDialog1_Apply( Object^ /*sender*/, System::EventArgs^ /*e*/ ) { // Applies the selected font to the selected text. richTextBox1->Font = fontDialog1->Font; }
.NET Framework
Available since 1.1
Available since 1.1
Show: