Returns an empty CustomFrame associated with this reader.
Namespace:
Aurigma.GraphicsMill.Codecs
Assembly:
Aurigma.GraphicsMill (in Aurigma.GraphicsMill.dll)
Protected Friend MustOverride Function GetEmptyFrame As CustomFrame
protected internal abstract CustomFrame GetEmptyFrame()
The implementation of this method is always simple: just return an instance of the CustomFrame descendant implemented by you.
protected override CustomFrame GetEmptyFrame() { return new CWFFrame(); }