DataGrid.CaptionFont 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置网格标题的字体。
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 对象设置标题的字体。
Private Sub SetCaptionFont(ByRef myGrid As DataGrid, newFont As System.Drawing.Font)
myGrid.CaptionFont = newFont
End Sub
注解
封装FontWindows字体,并提供操作该字体的方法。