Video SDK for Linux API Reference
Loading...
Searching...
No Matches
ZoomVideoSDKViewSize Struct Reference

#include <zoom_video_sdk_share_helper_interface.h>

Public Member Functions

 ZoomVideoSDKViewSize ()
 resolution height
 
 ZoomVideoSDKViewSize (const ZoomVideoSDKViewSize &resolution)
 
 ZoomVideoSDKViewSize (unsigned int new_width, unsigned int new_height)
 

Public Attributes

unsigned int width
 
unsigned int height
 resolution width
 

Detailed Description

Definition at line 190 of file zoom_video_sdk_share_helper_interface.h.

Constructor & Destructor Documentation

◆ ZoomVideoSDKViewSize() [1/3]

ZoomVideoSDKViewSize::ZoomVideoSDKViewSize ( )
inline

resolution height

Definition at line 195 of file zoom_video_sdk_share_helper_interface.h.

196 {
197 width = 0;
198 height = 0;
199 }

References height, and width.

◆ ZoomVideoSDKViewSize() [2/3]

ZoomVideoSDKViewSize::ZoomVideoSDKViewSize ( const ZoomVideoSDKViewSize & resolution)
inline

Definition at line 201 of file zoom_video_sdk_share_helper_interface.h.

202 {
203 width = resolution.width;
204 height = resolution.height;
205 }

References height, and width.

◆ ZoomVideoSDKViewSize() [3/3]

ZoomVideoSDKViewSize::ZoomVideoSDKViewSize ( unsigned int new_width,
unsigned int new_height )
inline

Definition at line 207 of file zoom_video_sdk_share_helper_interface.h.

208 {
209 width = new_width;
210 height = new_height;
211 }

References height, and width.

Member Data Documentation

◆ height

unsigned int ZoomVideoSDKViewSize::height

resolution width

Definition at line 193 of file zoom_video_sdk_share_helper_interface.h.

Referenced by ZoomVideoSDKViewSize(), ZoomVideoSDKViewSize(), and ZoomVideoSDKViewSize().

◆ width

unsigned int ZoomVideoSDKViewSize::width