This documentation is archived and is not being maintained.
DataGrid::CaptionFont Property
.NET Framework (current version)
Gets or sets the font of the grid's caption.
Namespace:
System.Windows.FormsAssembly:
System.Windows.Forms (in System.Windows.Forms.dll)
public:
property Font^ CaptionFont {
Font^ get();
void set(Font^ value);
}
A Font encapsulates a Windows font and provides the methods for manipulating that font.
The following code example sets the caption's font using a Font object.
Private Sub SetCaptionFont(ByRef myGrid As DataGrid, newFont As System.Drawing.Font)
myGrid.CaptionFont = newFont
End Sub
.NET Framework
Available since 1.1
Return to top