VideoFormat.width Property¶
Module: VideoFormat
Type: int
Definition¶
Specifies the width of the video frame in pixels, determining the horizontal resolution of the video format.
int get width => getWidth();
set width(int value) => setWidth(value);
Exceptions
An error has occurred during Devices Library execution.
public int width
{
get => Getwidth();
set => Setwidth(ref value);
}
Exceptions
An error has occurred during Devices Library execution.
public int getWidth() throws DevicesException
public void setWidth(int width) throws DevicesException
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesVideoFormat_GetWidth (ID3_DEVICES_VIDEO_FORMAT hVideoFormat, int * width)
int id3DevicesVideoFormat_SetWidth (ID3_DEVICES_VIDEO_FORMAT hVideoFormat, int width)
Returns