Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ExportFormatID Variable

In This Article

#Declaration

TypeScript
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}