constructor(text?: string, font?: PdfFont, brushOrColor?: any): PdfRunningTitleDeclarativeContent
Initializes a new instance of the PdfRunningTitleDeclarativeContent class.
The text of the running title.
Font of the text.
The PdfBrush or Color or any string acceptable by the fromString method used to fill the text.
Gets or sets the text of the running title.
May contain up to 3 tabular characters ('\t') which are used for separating the text into the parts that will be aligned within the page area using left, center and right alignment. Two kinds of macros are supported, '&[Page]' and '&[Pages]'. The former one designates the current page index while the latter one designates the page count.
For example, for the first page of a document having ten pages, the following string:
'&[Page]\\&[Pages]\theader\t&[Page]\\&[Pages]'
will be translated to:
'1\10 header 1\10'
clone(): PdfRunningTitleDeclarativeContent
Creates a copy of this PdfRunningTitleDeclarativeContent.
equals(value: PdfRunningTitleDeclarativeContent): boolean
Determines whether the specified PdfRunningTitleDeclarativeContent instance is equal to the current one.
PdfRunningTitleDeclarativeContent to compare.
Represents the declarative content of the running title.