Options for opening a file

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

Properties

addToMRU?: boolean

Whether to add the file to the Most Recently Used (MRU) list (optional)

fileSrc: string

The source of the file

makeVisible?: boolean

Whether to make the file visible (optional)

password?: string

The password for the file (optional)