Spread.Sheets
rotate メソッド
GC.Spread.Sheets.Shapes 名前空間 > GroupShape タイプ : rotate メソッド
groupShapeの回転角度。単位は度です。
groupShapeの回転角度を取得または設定します。
シンタックス
var instance = new GC.Spread.Sheets.Shapes.GroupShape(worksheet, name);
var returnValue; // Type: any

// パラメータ
var value; //タイプ: string

returnValue = instance.rotate(value);
function rotate( 
   value : string
) : any;

パラメータ

value
groupShapeの回転角度。単位は度です。
使用例
var shape1 = sheet.shapes.add("myShape1", GC.Spread.Sheets.Shapes.AutoShapeType.rectangle, 62 * 9, 0, 200, 200); var shape2 = sheet.shapes.add("myShape2", GC.Spread.Sheets.Shapes.AutoShapeType.rectangle, 20, 20, 200, 200); var shape = sheet.shapes.group([shape1, shape2]); shape.rotate(60); var angle = shape.rotate();
関連トピック

参照

GroupShape タイプ