Video SDK for MacOS API Reference
|
Helper class for managing whiteboard functionality in Zoom Video SDK sessions. More...
#include <ZMVideoSDKWhiteboardHelper.h>
Inherits NSObject.
Instance Methods | |
(ZMVideoSDKErrors) | - subscribeWhiteboard: |
Displays the whiteboard view when someone is sharing the whiteboard. | |
(ZMVideoSDKErrors) | - unSubscribeWhiteboard |
Hides the whiteboard sharing view when someone is sharing the whiteboard. | |
(BOOL) | - canStartShareWhiteboard |
Checks whether the current user can start whiteboard sharing. Only the host can start whiteboard sharing. | |
(BOOL) | - canStopShareWhiteboard |
Checks whether the current user can stop whiteboard sharing. | |
(ZMVideoSDKErrors) | - setWhiteboardViewPos: |
Set the position of the whiteboard web view window. | |
(ZMVideoSDKErrors) | - setWhiteboardViewSize: |
Set the size of the whiteboard web view window. | |
(BOOL) | - isOtherSharingWhiteboard |
Checks whether another user is currently sharing a whiteboard. | |
(ZMVideoSDKErrors) | - startShareWhiteboard |
Starts whiteboard sharing in the session. | |
(ZMVideoSDKErrors) | - stopShareWhiteboard |
Stops whiteboard sharing in the session. | |
(ZMVideoSDKErrors) | - exportWhiteboard: |
Exports the currently shared whiteboard. | |
Helper class for managing whiteboard functionality in Zoom Video SDK sessions.
Definition at line 17 of file ZMVideoSDKWhiteboardHelper.h.
- (BOOL) canStartShareWhiteboard |
Checks whether the current user can start whiteboard sharing. Only the host can start whiteboard sharing.
- (BOOL) canStopShareWhiteboard |
Checks whether the current user can stop whiteboard sharing.
- (ZMVideoSDKErrors) exportWhiteboard: | (ZMVideoSDKExportFormat) | format |
Exports the currently shared whiteboard.
format | The export format. |
ZMVideoSDKErrors_Success
if successful, otherwise an error code. - (BOOL) isOtherSharingWhiteboard |
Checks whether another user is currently sharing a whiteboard.
- (ZMVideoSDKErrors) setWhiteboardViewPos: | (NSPoint) | point |
Set the position of the whiteboard web view window.
point | The position coordinates (x, y) for the whiteboard window. Use (-1, -1) to center the window on the screen where the owner window is located. |
- (ZMVideoSDKErrors) setWhiteboardViewSize: | (NSSize) | size |
Set the size of the whiteboard web view window.
size | The width and height dimensions for the whiteboard window. Use (0, 0) to use the default window size. |
- (ZMVideoSDKErrors) startShareWhiteboard |
Starts whiteboard sharing in the session.
ZMVideoSDKErrors_Success
if successful, otherwise an error code. - (ZMVideoSDKErrors) stopShareWhiteboard |
Stops whiteboard sharing in the session.
ZMVideoSDKErrors_Success
if successful, otherwise an error code. - (ZMVideoSDKErrors) subscribeWhiteboard: | (NSWindow *) | window |
Displays the whiteboard view when someone is sharing the whiteboard.
window | The owner window for the whiteboard display. Cannot be nil. |
- (ZMVideoSDKErrors) unSubscribeWhiteboard |
Hides the whiteboard sharing view when someone is sharing the whiteboard.