Skip to main content
All docs
V25.1
  • ExportFormatID Variable

    Declaration

    export const ExportFormatID: {
        PDF: {
            text: string;
            textId: string;
            format: string;
        };
        XLS: {
            text: string;
            textId: string;
            format: string;
        };
        XLSX: {
            text: string;
            textId: string;
            format: string;
        };
        RTF: {
            text: string;
            textId: string;
            format: string;
        };
        MHT: {
            text: string;
            textId: string;
            format: string;
        };
        HTML: {
            text: string;
            textId: string;
            format: string;
        };
        Text: {
            text: string;
            textId: string;
            format: string;
            propertyName: string;
        };
        CSV: {
            text: string;
            textId: string;
            format: string;
        };
        Image: {
            text: string;
            textId: string;
            format: string;
        };
        DOCX: {
            text: string;
            textId: string;
            format: string;
        };
    };

    Members

    Name Type
    CSV {format: string, text: string, textId: string}
    DOCX {format: string, text: string, textId: string}
    HTML {format: string, text: string, textId: string}
    Image {format: string, text: string, textId: string}
    MHT {format: string, text: string, textId: string}
    PDF {format: string, text: string, textId: string}
    RTF {format: string, text: string, textId: string}
    Text {format: string, propertyName: string, text: string, textId: string}
    XLS {format: string, text: string, textId: string}
    XLSX {format: string, text: string, textId: string}