Class ShapeStyle
Represents the style of a shape.
Inheritance
System.Object
ShapeStyle
Namespace: FastReport.Map
Assembly: FastReport.dll
Syntax
[TypeConverter(typeof(FRExpandableObjectConverter))]
public class ShapeStyle
Constructors
ShapeStyle()
Initializes a new instance of the ShapeStyle class.
Declaration
public ShapeStyle()
Properties
BorderColor
Gets or sets the border color.
Declaration
public Color BorderColor { get; set; }
Property Value
Type | Description |
---|---|
System.Drawing.Color |
BorderStyle
Gets or sets the border style.
Declaration
public DashStyle BorderStyle { get; set; }
Property Value
Type | Description |
---|---|
System.Drawing.Drawing2D.DashStyle |
BorderWidth
Gets or sets the border width.
Declaration
public float BorderWidth { get; set; }
Property Value
Type | Description |
---|---|
System.Single |
FillColor
Gets or sets the fill color.
Declaration
public Color FillColor { get; set; }
Property Value
Type | Description |
---|---|
System.Drawing.Color |
Font
Gets or sets the font.
Declaration
public Font Font { get; set; }
Property Value
Type | Description |
---|---|
System.Drawing.Font |
PointSize
Gets or sets the point size, in pixels.
Declaration
public float PointSize { get; set; }
Property Value
Type | Description |
---|---|
System.Single |
TextColor
Gets or sets the text color.
Declaration
public Color TextColor { get; set; }
Property Value
Type | Description |
---|---|
System.Drawing.Color |
Methods
Assign(ShapeStyle)
Copies contents from another similar object.
Declaration
public void Assign(ShapeStyle src)
Parameters
Type | Name | Description |
---|---|---|
ShapeStyle | src | The object to copy the contents from. |