Mac SDK
ZoomSDKShareElement.h
1 //
2 // ZoomSDKShareRender.h
3 // ZoomSDK
4 //
5 // Created by TOTTI on 19/01/2018.
6 // Copyright © 2018 Zoom Video Communications,Inc. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "ZoomSDKErrors.h"
11 
12 @protocol ZoomSDKShareElementDelegate <NSObject>
21 -(void)onShareSourceUserIDNotify:(unsigned int)userid;
22 
23 @end
24 
25 @interface ZoomSDKShareElement : NSObject
26 {
27  unsigned int _userId;
28  ViewShareMode _viewMode;
29  NSView* _shareView;
30  id<ZoomSDKShareElementDelegate> _delegate;
31  NSRect _frame;
32 }
33 @property(nonatomic, assign) unsigned int userId;
34 @property(nonatomic, assign) ViewShareMode viewMode;
35 @property(nonatomic, assign) NSView* shareView;
36 @property(nonatomic, assign) id<ZoomSDKShareElementDelegate> delegate;
41 - (id)initWithFrame:(NSRect)frame;
46 - (ZoomSDKError)resize:(NSRect)frame;
51 - (ZoomSDKError)ShowShareRender:(BOOL)show;
55 - (void)cleanUp;
56 @end
-[ZoomSDKShareElementDelegate-p onShareContentStartReceiving]
void onShareContentStartReceiving()
Callback event of sharer sending data.
ZoomSDKShareElementDelegate-p
Definition: ZoomSDKShareContainer.h:10
ZoomSDKShareElement
Definition: ZoomSDKShareContainer.h:24