VideoDimensions
The video dimension.
public class VideoDimensions
{
public VideoDimensions()
{
width = 640;
height = 480;
}
public VideoDimensions(int width, int height)
{
this.width = width;
this.height = height;
}
public int width { set; get; }
public int height { set; get; }
}
Attributes
- width
-
The width (pixels) of the video.
- height
- The height (pixels) of the video.