@zoom/react-native-videosdk
    Preparing search index...
    type ZoomVideoSdkAnnotationHelperType = {
        canDoAnnotation: () => Promise<boolean>;
        clear: (clearType: string) => Promise<Errors>;
        getToolColor: () => Promise<number>;
        getToolType: () => Promise<string>;
        getToolWidth: () => Promise<number>;
        isSenderDisableAnnotation: () => Promise<boolean>;
        redo: () => Promise<Errors>;
        setToolColor: (toolColor: string) => Promise<Errors>;
        setToolType: (toolType: string) => Promise<Errors>;
        setToolWidth: (width: number) => Promise<Errors>;
        startAnnotation: () => Promise<Errors>;
        stopAnnotation: () => Promise<Errors>;
        undo: () => Promise<Errors>;
    }

    Implemented by

    Index

    Properties

    canDoAnnotation: () => Promise<boolean>

    Whether the current user can do annotation on the share.

    clear: (clearType: string) => Promise<Errors>

    Clears the annotations.

    getToolColor: () => Promise<number>

    Gets the current tool color for annotations.

    getToolType: () => Promise<string>

    Gets the current tool type for annotations.

    getToolWidth: () => Promise<number>

    Gets the current tool width for annotations.

    isSenderDisableAnnotation: () => Promise<boolean>

    Use canDoAnnotation instead.

    redo: () => Promise<Errors>

    Redoes the last undone action.

    setToolColor: (toolColor: string) => Promise<Errors>

    Sets the tool color for annotations.

    setToolType: (toolType: string) => Promise<Errors>

    Sets the tool type for annotations.

    setToolWidth: (width: number) => Promise<Errors>

    Sets the tool width for annotations.

    startAnnotation: () => Promise<Errors>

    Start annotation.

    stopAnnotation: () => Promise<Errors>

    Stop annotation.

    undo: () => Promise<Errors>

    Undoes the last action.