createWhiteboard()
createWhiteboard: ({personal: boolean, folderId: string})
//Creates the whiteboard in the room library
sambaFrame.createWhiteboard({personal: false});
//Creates the whiteboard in the personal library
sambaFrame.createWhiteboard({personal: true});
//Creates the whiteboard in the room library inside a concrete folder
sambaFrame.createWhiteboard({
personal: false,
folderId: '6d987ab4-9df2-45f2-a076-eec503cc6799'
});Last updated