AddVideoFrame

AddVideoFrame(float, float, float, float, string)

Adds a new video frame to the end of a collection.

public IVideoFrame AddVideoFrame(float x, float y, float width, float height, string fname)
ParameterTypeDescription
xSingleX coordinate of a new video frame.
ySingleY coordinate of a new video frame.
widthSingleWidth of a new video frame.
heightSingleHeight of a new video frame.
fnameStringVideo file name.

Return Value

Created VideoFrame object.

See Also


AddVideoFrame(float, float, float, float, IVideo)

Adds a new video frame to the end of a collection.

public IVideoFrame AddVideoFrame(float x, float y, float width, float height, IVideo video)
ParameterTypeDescription
xSingleX coordinate of a new video frame.
ySingleY coordinate of a new video frame.
widthSingleWidth of a new video frame.
heightSingleHeight of a new video frame.
videoIVideoVideo.

Return Value

Created VideoFrame object.

See Also