Sign up (with export icon)

FootnotesPropertiesConfig

Api-interface iconinterface

The configuration of the FootnotesProperties feature.

Read more in FootnotesProperties.

Properties

  • Chevron-right icon

    defaultStartIndex : number | undefined

    The default start index of the footnotes definitions. The default is 1.

    Note: This configuration is used only when the footnotes definitions is being created after adding the first footnote.

  • Chevron-right icon

    defaultStyle : 'decimal' | 'decimal-leading-zero' | 'lower-latin' | 'upper-latin' | 'lower-alpha' | 'upper-alpha' | 'lower-roman' | 'upper-roman' | undefined

    The default style of the footnotes definitions. The default is 'decimal'.

    Note: This configuration is used only when the footnotes definitions is being created after adding the first footnote.

  • Chevron-right icon

    toolbar : Array<string> | undefined

    Items to be placed in the footnotes properties toolbar.

    Assuming that you use the FootnotesPropertiesUI feature, the following toolbar items will be available in ComponentFactory:

    • 'footnotesStyle' - the dropdown for selecting the footnotes definitions style.

    The default configuration for footnotes toolbar is:

    const footnotesPropertiesConfig = {
      toolbar: [ 'footnotesStyle' ]
    };
    
    Copy code