DataGrid.CaptionFont 属性

定义

获取或设置网格标题的字体。

public:
 property System::Drawing::Font ^ CaptionFont { System::Drawing::Font ^ get(); void set(System::Drawing::Font ^ value); };
public System.Drawing.Font CaptionFont { get; set; }
member this.CaptionFont : System.Drawing.Font with get, set
Public Property CaptionFont As Font

属性值

Font

一个 Font,它代表标题的字体。

示例

下面的代码示例使用 Font 对象设置标题的字体。

Private Sub SetCaptionFont(ByRef myGrid As DataGrid, newFont As System.Drawing.Font)
    myGrid.CaptionFont = newFont
 End Sub

注解

封装FontWindows字体,并提供操作该字体的方法。

适用于

另请参阅