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
備註
Font封裝Windows字型,並提供操作該字型的方法。