Class ClosedShapeItem
An abstract base class that provides basic functionality for any descended ClosedShapeItem class.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Neodynamic.SDK.Printing
Assembly: cs.temp.dll.dll
Syntax
public abstract class ClosedShapeItem : ShapeItem, IXmlTemplate, INotifyPropertyChanged
Fields
_fillColor
Declaration
protected Color _fillColor
Field Value
Type | Description |
---|---|
Color |
_fillColorHex
Declaration
protected string _fillColorHex
Field Value
Type | Description |
---|---|
System.String |
Properties
FillColor
Gets or sets the fill color. Default value is White which will produce a transparent fill.
Declaration
public Color FillColor { get; set; }
Property Value
Type | Description |
---|---|
Color |
FillColorHex
Gets or sets the fill color in hex notation.
Declaration
public string FillColorHex { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
The Color Hex notation is as follows #[AA]RRGGBB where A, R, G, B refers to Aplha, Red, Green and Blue pixels. The following options would also be valid: #RGB or #ARGB (in this short format all channel values must be the same), #RRGGBB or #AARRGGBB.