Interface SearchResultBinaryPropertyEditor

検索結果BinaryPropertyEditor

interface SearchResultBinaryPropertyEditor {
    customStyle?: string;
    displayType:
        | "LABEL"
        | "HIDDEN"
        | "BINARY"
        | "LINK"
        | "PREVIEW"
        | "CARD_EMPHASIZE";
    downloadActionName: string;
    height?: number;
    hidden: boolean;
    openNewTab: boolean;
    referenceActionName: string;
    type: string;
    useDownloadLink: boolean;
    useImageViewer: boolean;
    usePdfjs: boolean;
    width?: number;
}

Hierarchy (view full)

Properties

customStyle?: string

表示カスタムスタイル

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

表示タイプ

downloadActionName: string

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

height?: number

画像の高さ(px)

hidden: boolean

hiddenにするか?

openNewTab: boolean

新しいタブで開く

referenceActionName: string

参照アクション名

type: string

エディタの種類

useDownloadLink: boolean

表示タイプが「CARD_EMPHASIZE」の場合にダウンロードリンクを表示する

useImageViewer: boolean

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

usePdfjs: boolean

PDF表示時にPDF.jsを利用

width?: number

画像の幅(px)