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
21 public int getWidth() {
22 return width;
23 }
24
30 public int getHeight() {
31 return height;
32 }
33}
int getHeight()
Gets the height of the user's video.
VideoSize(int width, int height)
int getWidth()
Gets the width of the user's video.