This documentation is for the old version. Go to the latest Graphics Mill docs

FormatWriter.AddFrame Method

Appends specified frame to the end of file (or other media).

Namespace: Aurigma.GraphicsMill.Codecs
Assembly: Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)

Syntax

Visual Basic
Public Overridable Sub AddFrame ( _
	frame As IFrame _
)
C#
public virtual void AddFrame(
	IFrame frame
)

Parameters

frame

Type: Aurigma.GraphicsMill.Codecs.IFrame

An object which implements IFrame interface representing the frame which you need to add into the file (or other media).

Remarks

Note, this interface provides only forward-only writing support. So you cannot insert frames before frames which were already added, or remove some of them.

See Also

Reference