OPEN_GRID API - v1.3.1
    Preparing search index...

    Interface ExportOptions

    그리드 내용을 Excel·CSV·JSON 파일로 내보낼 때의 세부 설정입니다. 아무것도 안 주면 기본값으로 곧장 내보내지고, 파일명·시트명·제외 컬럼·제목 행 등을 필요할 때만 얹습니다. 문자열 하나만 넘기면 파일명으로 해석됩니다. / Settings for exporting the grid to Excel/CSV/JSON. With nothing set it exports with defaults; add filename, sheet name, excluded columns, title rows, etc. only as needed. A lone string is treated as the filename.

    interface ExportOptions {
        exceptFields?: string[];
        filename?: string;
        footers?: ExportHeaderRow[];
        headers?: ExportHeaderRow[];
        includeHeader?: boolean;
        maskOnExport?: boolean;
        onAfter?: (blob: Blob) => void;
        onBefore?: () => void | Promise<void>;
        sheetName?: string;
        styleMode?: ExportStyleMode;
    }
    Index

    Properties

    exceptFields?: string[]

    내보내기에서 뺄 컬럼들의 field. / field names of columns to leave out.

    filename?: string

    저장될 파일 이름. / The saved file's name.

    footers?: ExportHeaderRow[]

    데이터 아래에 붙일 행들(비고·서명란 등). / Extra rows appended below the data (notes, sign-off …).

    headers?: ExportHeaderRow[]

    데이터 위에 얹을 제목 행들(보고서 머리말 등). / Extra title rows placed above the data (report headings, etc.).

    includeHeader?: boolean

    머리글 행을 포함할지. 기본 true. / Whether to include the header row. Default true.

    maskOnExport?: boolean

    true 면 마스킹된 컬럼을 가려진 상태 그대로 내보냅니다. 기본 false = 원본 값 내보냄. / true exports masked columns still obscured. Default false = raw values.

    onAfter?: (blob: Blob) => void

    내보내기 완료 후 부를 훅. 만들어진 파일 blob 을 받습니다. / A hook called after export, receiving the produced file blob.

    onBefore?: () => void | Promise<void>

    내보내기 시작 직전에 부를 훅(로딩 표시 등). / A hook called just before export starts (show a spinner …).

    sheetName?: string

    엑셀 시트 탭 이름. / Excel sheet tab name.

    styleMode?: ExportStyleMode

    내보낸 파일에 그리드 테마 색을 입힐지 방식. 기본 'theme'(현재 테마 반영). / How to style the exported file — default 'theme' (carry the current theme).