AVDWhiteboard.h
IntroductionUse the links in the table of contents to the left to access the documentation. Methods
attachView:boardInfo:- (AVDResult)attachView:(UIView*)view boardInfo:(AVDWhiteboardInfo *)boardInfo; ParametersReturn Value返回错误代码 Discussion视图与白板id绑定 closeBoard:- (AVDResult)closeBoard:(AVDBoardId)whiteboardId; ParametersReturn Value返回错误代码 Discussion关闭白板 createBoard:- (AVDResult)createBoard:(AVDWhiteboardInfo *)whiteboardInfo; ParametersReturn Value返回错误代码 Discussion创建白板 getWhiteboard:+ (AVDWhiteboard *)getWhiteboard:(AVDRoom *)room; ParametersReturn Value返回白板模块对象。 Discussion获取白板功能模块对象 onCloseBoardNotify:- (void)onCloseBoardNotify:(AVDBoardId)whiteboardId; ParametersDiscussion关闭白板工作 onCreateBoardNotify:- (void)onCreateBoardNotify:(AVDWhiteboardInfo *)whiteboardInfo; ParametersDiscussion接收到白板创建消息通知 onRemoveBoardNotify:- (void)onRemoveBoardNotify:(AVDBoardId)whiteboardId; ParametersDiscussion接收到白板移除建消息通知 onShareBoardNotify:- (void)onShareBoardNotify:(AVDWhiteboardInfo *)whiteboardInfo; ParametersDiscussion共享白板消息通知 onUpdateBoardNotify:- (void)onUpdateBoardNotify:(AVDWhiteboardInfo *)whiteboardInfo; ParametersDiscussion接收到白板更新消息通知 removeBoard:- (AVDResult)removeBoard:(AVDBoardId)whiteboardId; ParametersReturn Value返回错误代码 Discussion移除白板 setBackgroundColor:alpha:red:green:blue:- (AVDResult)setBackgroundColor:(AVDBoardId)whiteboardId alpha:(CGFloat)alpha red:(NSInteger)red green:(NSInteger)green blue:(NSInteger)blue; ParametersReturn Value返回错误代码 Discussion设置白板背景颜色 setBackgroundImage:imageName:- (AVDResult)setBackgroundImage:(AVDBoardId)whiteboardId imageName:(NSString *)imageName; ParametersReturn Value返回错误代码 Discussion设置白板背景图片 setHeight:height:- (AVDResult)setHeight:(AVDBoardId)whiteboardId height:(NSInteger)height; ParametersReturn Value返回错误代码 Discussion设置白板的高度 setWidth:width:- (AVDResult)setWidth:(AVDBoardId)whiteboardId width:(NSInteger)width; ParametersReturn Value返回错误代码 Discussion设置白板的宽度 shareBoard:- (AVDResult)shareBoard:(AVDBoardId)whiteboardId; ParametersReturn Value返回错误代码 Discussion共享白板 updateBoard:whiteboard:- (AVDResult)updateBoard:(AVDBoardId)whiteboardId whiteboard:(AVDWhiteboardInfo *)whiteboardInfo; ParametersReturn Value返回错误代码 Discussion更新白板 |