FontStyle 枚举
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指定应用到文本的字形信息。
此枚举支持其成员值的按位组合。
public enum class FontStyle
[System.Flags]
public enum FontStyle
[<System.Flags>]
type FontStyle =
Public Enum FontStyle
- 继承
- 属性
字段
Bold | 1 | 加粗文本。 |
Italic | 2 | 倾斜文本。 |
Regular | 0 | 普通文本。 |
Strikeout | 8 | 中间有直线通过的文本。 |
Underline | 4 | 带下划线的文本。 |
示例
下面的代码示例演示如何使用 FontStyle 枚举将按钮的 属性设置为Font新的粗体字体。 此示例旨在与 Windows 窗体 一起使用。 Create包含名为 Button1 的按钮的窗体,并将以下代码粘贴到其中。 将 Button1_Click
方法与按钮的 Click 事件相关联。
private:
void Button1_Click( System::Object^ /*sender*/, System::EventArgs^ /*e*/ )
{
Button1->Font = gcnew System::Drawing::Font( FontFamily::GenericSansSerif,12.0F,FontStyle::Bold );
}
private void Button1_Click(System.Object sender, System.EventArgs e)
{
if (Button1.Font.Style != FontStyle.Bold)
Button1.Font = new Font(FontFamily.GenericSansSerif,
12.0F, FontStyle.Bold);
}
Private Sub Button1_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles Button1.Click
If Not Button1.Font.Style = FontStyle.Bold Then
Button1.Font = New Font(FontFamily.GenericSansSerif, _
12.0F, FontStyle.Bold)
End If
End Sub