Interface DetailBinaryPropertyEditor

詳細・編集画面のBinaryPropertyEditor

interface DetailBinaryPropertyEditor {
    acceptType: string;
    customStyle?: string;
    displayType:
        | "LABEL"
        | "HIDDEN"
        | "BINARY"
        | "LINK"
        | "PREVIEW";
    downloadActionName: string;
    height?: number;
    hideDeleteButton: boolean;
    hideSelectButton: boolean;
    openNewTab: boolean;
    placeholder?: string;
    referenceActionName: string;
    showImageRotateButton: boolean;
    type: string;
    uploadWebApiName: string;
    useImageViewer: boolean;
    usePdfjs: boolean;
    width?: number;
}

Hierarchy (view full)

Properties

acceptType: string

許可するファイル型

customStyle?: string

カスタムスタイル

displayType:
    | "LABEL"
    | "HIDDEN"
    | "BINARY"
    | "LINK"
    | "PREVIEW"

表示タイプ

downloadActionName: string

ダウンロードアクション名

height?: number

画像の高さ(px)

hideDeleteButton: boolean

削除ボタンを非表示する

hideSelectButton: boolean

ファイル選択ボタンを非表示する

openNewTab: boolean

新しいタブで開く

placeholder?: string

プレースホルダ

referenceActionName: string

参照アクション名

showImageRotateButton: boolean

画像表示時に回転ボタンを表示

type: string

エディタの種類

uploadWebApiName: string

アップロードWebApi名

useImageViewer: boolean

画像表示時にイメージViewerを利用

usePdfjs: boolean

PDF表示時にPDF.jsを利用

width?: number

画像の幅(px)