ComPDF React Native - v3.0.0
    Preparing search index...

    Interface CPDFToolbarItem

    Configuration for a custom toolbar item. You can use this to add custom buttons to the toolbar.

    // custom item
    CPDFToolbarItem {
    action: CPDFToolbarAction.CUSTOM,
    identifier: "custom_button_1",
    icon: "custom_icon", // name of the android drawable or iOS image asset
    title: "Custom" // This only takes effect in the "more" menu.
    }
    interface CPDFToolbarItem {
        action: CPDFToolbarAction;
        identifier?: string;
        icon?: string;
        title?: string;
    }
    Index

    Properties

    identifier?: string
    icon?: string
    title?: string