API Reference

Class

FooterTextBuilder

Namespace OfficeIMO.Pdf
Assembly OfficeIMO.Pdf

Builder for footer text segments and tokens.

Inheritance

  • Object
  • FooterTextBuilder

Usage

This type appears in these public API surfaces even when no hand-authored example is attached directly to the page.

Accepted by parameters

Methods

CurrentPage 2 overloads
public FooterTextBuilder CurrentPage() #
Returns: FooterTextBuilder

Adds a token that renders the current page number.

Returns

The same builder for chaining.

public FooterTextBuilder CurrentPage(TextRun style) #
Returns: FooterTextBuilder

Adds a current-page token with the supplied visual text style.

Parameters

style OfficeIMO.Pdf.TextRun requiredposition: 0
Text run whose visual styling is applied; its text is ignored.

Returns

The same builder for chaining.

public FooterTextBuilder Run(TextRun run) #
Returns: FooterTextBuilder

Adds a visually styled text run to the footer.

Parameters

run OfficeIMO.Pdf.TextRun requiredposition: 0
Styled text to render. Interactive links, inline visuals, and paragraph tabs are not supported.

Returns

The same builder for chaining.

public FooterTextBuilder Text(String s) #
Returns: FooterTextBuilder

Adds a literal text segment to the footer.

Parameters

s System.String requiredposition: 0
Text to render.

Returns

The same builder for chaining.

TotalPages 2 overloads
public FooterTextBuilder TotalPages() #
Returns: FooterTextBuilder

Adds a token that renders the total number of pages.

Returns

The same builder for chaining.

public FooterTextBuilder TotalPages(TextRun style) #
Returns: FooterTextBuilder

Adds a total-pages token with the supplied visual text style.

Parameters

style OfficeIMO.Pdf.TextRun requiredposition: 0
Text run whose visual styling is applied; its text is ignored.

Returns

The same builder for chaining.