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

GifEncoderOptions Constructor (Int32, Boolean)

Creates and initializes new GifEncoderOptions class instance. You can initialize some frame-related properties here.

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

Syntax

Visual Basic
Public Sub New ( _
	delay As Integer, _
	interlaced As Boolean _
)
C#
public GifEncoderOptions(
	int delay,
	bool interlaced
)

Parameters

delay

Type: System.Int32

Number of hundredths (1/100) of a second to wait after rendering the frame. You can change it later through Delay property.
interlaced

Type: System.Boolean

Value that specifies if the frame should be interlaced. You can change it later through Interlaced property.

See Also

Reference