打开文件的选项

interface OpenFromFileOptions {
    addToMRU?: boolean;
    fileSrc: string;
    makeVisible?: boolean;
    password?: string;
}

Properties

addToMRU?: boolean

是否将文件添加到最近使用 (MRU) 列表中(可选)

fileSrc: string

文件来源

makeVisible?: boolean

是否使文件可见(可选)

password?: string

文件密码(可选)