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

AviWatermark.TimerFormatProvider Property

Gets/sets the object which will format the timer watermark when it displays the timestamp.

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

Syntax

Visual Basic
Public Property TimerFormatProvider As IFormatProvider
C#
public IFormatProvider TimerFormatProvider { get; set; }

Property Value

An object implementing IFormatProvider interface which provides the formatting functionality. Typically it is an instance of the DateTimeFormatInfo class returned from the CultureInfo object.

Remarks

It is useful to specify the formatter object when you want to make the timestamp culture-dependant. It is recommended to read MSDN (.NET Framework Class Library) about the DateTimeFormatInfo class for more details on this.

As usual this property is used in conjunction with the TimerFormat property.

Note

This property makes sense only if the timer watermark is enabled (i.e. the TimerVisible property is set to true) and TimerStyle is CurrentDateTime.

See Also

Reference