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

CustomFormatReader.GetEmptyFrame Method

Returns an empty CustomFrame associated with this reader.

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

Syntax

Visual Basic
Protected Friend MustOverride Function GetEmptyFrame As CustomFrame
C#
protected internal abstract CustomFrame GetEmptyFrame()

Return Value

Object of the CustomFrame descendant class associated with this reader.

Remarks

The implementation of this method is always simple: just return an instance of the CustomFrame descendant implemented by you.

Examples

C#
protected override CustomFrame GetEmptyFrame()
{
    return new CWFFrame();
}

See Also

Reference