Font::Style Property

 

Gets style information for this Font.

Namespace:   System.Drawing
Assembly:  System.Drawing (in System.Drawing.dll)

public:
[BrowsableAttribute(false)]
property FontStyle Style {
	FontStyle get();
}

Property Value

Type: System.Drawing::FontStyle

A FontStyle enumeration that contains style information for this Font.

The following code example demonstrates how to set the Font property of a button to a new bold font using the FontStyle enumeration. This example is designed to be used with Windows Forms. Create a form containing a button named Button1 and paste the following code into it. Associate the Button1_Click method with the button's Click event.

private:
   void Button1_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
   {
      Button1->Font = gcnew System::Drawing::Font( FontFamily::GenericSansSerif,12.0F,FontStyle::Bold );
   }

.NET Framework
Available since 1.1
Return to top
Show: