在此版本中,我们为形状新增了边框效果。共有五种线型,分别为:simple、double、thickThin、thinThick、triple。
五种线型应用到形状上效果如下:
添加的方法也跟简单,我们需要指定GC.Spread.Sheets.Shapes.CompoundType的类型,这是一个枚举类型对应这上面的5种效果。
- var rect = sheet.shapes.add('rect', GC.Spread.Sheets.Shapes.AutoShapeType.lineCallout2, 100, 50, 300, 200);
- var shapeStyle = rect.style();
- shapeStyle.line.compoundType = GC.Spread.Sheets.Shapes.CompoundType.thickThin;
- rect.style(shapeStyle);
复制代码
|
|