Returns or sets the fill color and transparency for the area inside the annotation rectangle/ellipse. This property is only valid when the annotation type is NOT 2(Text).

Namespace: Dynamsoft.DotNet.TWAIN
Assembly: DynamicDotNetTWAIN (in DynamicDotNetTWAIN.dll) Version: 4.0.0.0 (4.0.0.0)

Syntax

C#
public Color AnnotationFillColor { get; set; }
Visual Basic
Public Property AnnotationFillColor As Color
	Get
	Set
Visual C++
public:
property Color AnnotationFillColor {
	Color get ();
	void set (Color value);
}

Remarks

By default, the color is white and not transparent.

Exceptions

ExceptionCondition
Dynamsoft.DotNet.TWAIN..::..TwainException When an error occurs and IfThrowException property is true, an exception will be thrown. When IfThrowException property is false, please check ErrorCode and ErrorString.

See Also