Spread.Sheets
backColor メソッド
ピクチャの背景色。
ピクチャの背景色を取得または設定します。
シンタックス
Javascript (Usage) 
var instance = new GC.Spread.Sheets.FloatingObjects.Picture(name, src, x, y, width, height);
var returnValue; // Type: any
returnValue = instance.backColor(value);
Javascript (Specification) 
function backColor( 
   value : string
) : any;

パラメータ

value
ピクチャの背景色。

戻り値の型

値が設定されていない場合は、ピクチャの背景色を返します。値が設定されている場合は、ピクチャを返します。
使用例
次のサンプルコードは、ピクチャの背景色を設定します。
activeSheet.pictures.add("f2","Event.png",2,2,10,10);
var picture = activeSheet.pictures.get("f2");
picture.pictureStretch(GC.Spread.Sheets.ImageLayout.stretch);
picture.backColor("Blue");
picture.borderWidth(2);
picture.borderColor("Red");

関連トピック

参照

Picture タイプ

 

 


© 2016-2017, GrapeCity inc. All rights reserved.