VideoFormat.height Property¶
Module: VideoFormat
Type: int
Definition¶
Specifies the height of the video frame in pixels, determining the vertical resolution of the video format.
int get height => getHeight();
set height(int value) => setHeight(value);
Exceptions
An error has occurred during Devices Library execution.
public int height
{
get => Getheight();
set => Setheight(ref value);
}
Exceptions
An error has occurred during Devices Library execution.
public int getHeight() throws DevicesException
public void setHeight(int height) throws DevicesException
Exceptions
An error has occurred during Devices Library execution.
int id3DevicesVideoFormat_GetHeight (ID3_DEVICES_VIDEO_FORMAT hVideoFormat, int * height)
int id3DevicesVideoFormat_SetHeight (ID3_DEVICES_VIDEO_FORMAT hVideoFormat, int height)
Returns