AddVideoFrame()

ShapeCollection::AddVideoFrame(float, float, float, float, System::String) method

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

System::SharedPtr<IVideoFrame> Aspose::Slides::ShapeCollection::AddVideoFrame(float x, float y, float width, float height, System::String fname) override

Arguments

ParameterTypeDescription
xfloatX coordinate of a new video frame.
yfloatY coordinate of a new video frame.
widthfloatWidth of a new video frame.
heightfloatHeight of a new video frame.
fnameSystem::StringVideo file name.

Return Value

Created VideoFrame object.

ShapeCollection::AddVideoFrame(float, float, float, float, System::SharedPtr<IVideo>) method

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

System::SharedPtr<IVideoFrame> Aspose::Slides::ShapeCollection::AddVideoFrame(float x, float y, float width, float height, System::SharedPtr<IVideo> video) override

Arguments

ParameterTypeDescription
xfloatX coordinate of a new video frame.
yfloatY coordinate of a new video frame.
widthfloatWidth of a new video frame.
heightfloatHeight of a new video frame.
videoSystem::SharedPtr<IVideo>Video to add.

Return Value

Created VideoFrame object.

See Also