OPEN_GRID API - v1.5.2
    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.

    グリッドの内容を Excel・CSV・JSON ファイルへエクスポートするときの細かい設定です。何も渡さなければ既定値で そのままエクスポートされ、ファイル名・シート名・除外する列・タイトル行などを必要なときだけ加えます。 文字列を一つだけ渡すと、ファイル名として解釈されます。

    把表格内容导出为 Excel/CSV/JSON 文件时的细节设置。什么都不传就按默认值直接导出,只在需要时再加上 文件名、工作表名、排除的列、标题行等。只传一个字符串时,视为文件名。

    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.

    エクスポートから外す列の field。

    导出时排除的列的 field。

    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.

    ヘッダー行を含めるか。既定 true。

    是否包含表头行。默认 true。

    maskOnExport?: boolean

    true 면 마스킹된 컬럼을 가려진 상태 그대로 내보냅니다. 기본 false = 원본 값 내보냄.

    true exports masked columns still obscured. Default false = raw values.

    true ならマスキングされた列を、伏せられた状態のままエクスポートします。既定 false = 元の値をエクスポート。

    true 时按遮蔽状态导出被掩码的列。默认 false = 导出原始值。

    onAfter?: (blob: Blob) => void

    내보내기 완료 후 부를 훅. 만들어진 파일 blob 을 받습니다.

    A hook called after export, receiving the produced file blob.

    エクスポート完了後に呼ぶフック。作られたファイルの blob を受け取ります。

    导出完成后调用的钩子。接收生成的文件 blob。

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

    내보내기 시작 직전에 부를 훅(로딩 표시 등).

    A hook called just before export starts (show a spinner …).

    エクスポートの開始直前に呼ぶフック(ローディング表示など)。

    导出开始前调用的钩子(显示加载提示等)。

    sheetName?: string

    엑셀 시트 탭 이름.

    Excel sheet tab name.

    Excel のシートタブの名前。

    Excel 工作表标签名。

    styleMode?: ExportStyleMode

    내보낸 파일에 그리드 테마 색을 입힐지 방식. 기본 'theme'(현재 테마 반영).

    How to style the exported file — default 'theme' (carry the current theme).

    エクスポートしたファイルにグリッドのテーマ色を付けるかの方式。既定 'theme'(現在のテーマを反映)。

    导出文件的样式方式。默认 'theme'(沿用当前主题)。