Meeting SDK for Android API Reference
Loading...
Searching...
No Matches
VideoSize.java
Go to the documentation of this file.
1package us.zoom.sdk;
2
6public class VideoSize {
7
8 private final int width;
9 private final int height;
10
11 public VideoSize(int width, int height) {
12 this.width = width;
13 this.height = height;
14 }
15
20 public int getWidth() {
21 return width;
22 }
23
28 public int getHeight() {
29 return height;
30 }
31}
The size of user's video.
Definition VideoSize.java:6
int getHeight()
the height of user's video.
VideoSize(int width, int height)
int getWidth()
the width of user's video.