property Pivot.Font as IFontDisp

Retrieves or sets the control's font.

TypeDescription
IFontDisp A Font object used to paint the items.

Use the Font property to change the control's font . Use the FilterBarFont property to assign a different font for the control's filter bar. Use the Refresh method to refresh the control. Use the BeginUpdate and EndUpdate method to maintain performance while perform multiple changes on the control.

The following VB sample assigns by code a new font to the control:

With Pivot1
    With .Font
        .Name = "Tahoma"
    End With
    .Refresh
End With

The following C++ sample assigns by code a new font to the control:

COleFont font = m_pivot.GetFont();
font.SetName( "Tahoma" );
m_pivot.Refresh();

the C++ sample requires definition of COleFont class ( #include "Font.h" )

The following VB.NET sample assigns by code a new font to the control:

With AxPivot1
    Dim font As System.Drawing.Font = New System.Drawing.Font("Tahoma", 10, FontStyle.Regular, GraphicsUnit.Point)
    .Font = font
    .CtlRefresh()
End With

The following C# sample assigns by code a new font to the control:

System.Drawing.Font font = new System.Drawing.Font("Tahoma", 10, FontStyle.Regular);
axPivot1.Font = font;
axPivot1.CtlRefresh();

The following VFP sample assigns by code a new font to the control:

with thisform.Pivot1.Object
	.Font.Name = "Tahoma"
	.Refresh()
endwith

The following Template sample assigns by code a new font to the control:

Font
{
	Name = "Tahoma"
}