SharpLeaf Reference > BoxStyle Structure > BoxStyle Constructor BoxStyle Constructor
Define boxing decorations.
Overloads
- public BoxStyle();
- public BoxStyle(double edgeWidth);
- public BoxStyle(int[] edgeWidths);
- public BoxStyle(double[] edgeWidths);
- public BoxStyle(double edgeWidth, Color edgeColor);
- public BoxStyle(int[] edgeWidths, Color edgeColor);
- public BoxStyle(double[] edgeWidths, Color edgeColor);
- public BoxStyle(double edgeWidth, Color edgeColor, LineStyle edgeStyle, double radius);
- public BoxStyle(int[] edgeWidths, Color edgeColor, LineStyle edgeStyle);
- public BoxStyle(double[] edgeWidths, Color edgeColor, LineStyle edgeStyle);
- public BoxStyle(double edgeWidth, Color edgeColor, LineStyle edgeStyle, double radius, Color fillColor, FillStyle fillStyle, bool shadow);
- public BoxStyle(int[] edgeWidths, Color edgeColor, LineStyle edgeStyle, double radius, Color fillColor, FillStyle fillStyle, bool shadow);
- public BoxStyle(double[] edgeWidths,Color edgeColor,LineStyle edgeStyle,double radius,Color fillColor,FillStyle fillStyle,bool shadow);
Example
// 1-pt thick rounded black box, shadowed and filled with light red
boxstyle = new BoxStyle(1,Color.Black,LineStyle.Solid,10,Color.Red,FillStyle.Saturate20,true);
See also ...BoxStyle.Members
Send comments on this topic © Dyalog Ltd 2021
|