IPageNumTool.Format
IPageNumTool
property Format: WideString;
Type Library
TeeChartx
Description
The Format property defines the format of the PageNumTool text string.
Example [Visual Basic]
Private Sub Form_Load()
Dim MyTool1 As Integer
With TChart1
.AddSeries scLine
.Series(0).FillSampleValues 10
MyTool1 = .Tools.Add(tcPageNumber)
With .Tools.Items(MyTool1).asPageNum
.Format = "This is page number %d of %d"
End With
End With
End Sub