Class TableColumn
Represents a column in a Table shape item.
Inheritance
System.Object
TableColumn
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 class TableColumn : IXmlTemplate, ICloneable
Fields
_fillColor
Declaration
protected Color _fillColor
Field Value
Type | Description |
---|---|
Color |
_fillColorHex
Declaration
protected string _fillColorHex
Field Value
Type | Description |
---|---|
System.String |
HexColorPattern
Declaration
protected string HexColorPattern
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.
Width
Gets or sets the width of the column. Default is zero, autosize.
Declaration
public double Width { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
Clone()
Declaration
public object Clone()
Returns
Type | Description |
---|---|
System.Object |
Implements
System.ICloneable.Clone()
ReadFromXml(XmlReader)
Declaration
public void ReadFromXml(XmlReader reader)
Parameters
Type | Name | Description |
---|---|---|
XmlReader | reader |
WriteToXml(XmlWriter)
Declaration
public void WriteToXml(XmlWriter writer)
Parameters
Type | Name | Description |
---|---|---|
XmlWriter | writer |