VideoDimensions
Video dimensions.
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; }
}
Properties
- width
- Video width in pixels.
- height
- Video height in pixels.