toggleLibraryFile()
toggleLibraryFile(id?: string, show?: boolean)
//This will toggle the file's open/close state
sambaFrame.toggleLibraryFile('c0771004-c9fc-4308-be4f-6264d8e486af');
//This will open the file, equivalent to sambaFrame.openLibraryFile();
sambaFrame.toggleLibraryFile('c0771004-c9fc-4308-be4f-6264d8e486af', true);
//This will close the file, equivalent to sambaFrame.closeLibraryFile();
sambaFrame.toggleLibraryFile('c0771004-c9fc-4308-be4f-6264d8e486af', false);Last updated