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

#include <zoom_video_sdk_share_helper_interface.h>

Public Member Functions

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

Data Fields

unsigned int width
 
unsigned int height
 

Detailed Description

Definition at line 220 of file zoom_video_sdk_share_helper_interface.h.

Constructor & Destructor Documentation

◆ ZoomVideoSDKViewSize() [1/3]

ZoomVideoSDKViewSize::ZoomVideoSDKViewSize ( )
inline

Definition at line 227 of file zoom_video_sdk_share_helper_interface.h.

References height, and width.

◆ ZoomVideoSDKViewSize() [2/3]

ZoomVideoSDKViewSize::ZoomVideoSDKViewSize ( const ZoomVideoSDKViewSize & resolution)
inline

Definition at line 233 of file zoom_video_sdk_share_helper_interface.h.

234 {
235 width = resolution.width;
236 height = resolution.height;
237 }

References height, and width.

◆ ZoomVideoSDKViewSize() [3/3]

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

Definition at line 239 of file zoom_video_sdk_share_helper_interface.h.

240 {
241 width = new_width;
242 height = new_height;
243 }

References height, and width.

Field Documentation

◆ height

unsigned int ZoomVideoSDKViewSize::height

resolution height

Definition at line 225 of file zoom_video_sdk_share_helper_interface.h.

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

◆ width

unsigned int ZoomVideoSDKViewSize::width

resolution width

Definition at line 223 of file zoom_video_sdk_share_helper_interface.h.

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