GC.Spread.Sheets.FloatingObjects 名前空間 > Picture タイプ : borderStyle メソッド |
Javascript (Usage) | |
---|---|
var instance = new GC.Spread.Sheets.FloatingObjects.Picture(name, src, x, y, width, height); var returnValue; // Type: any returnValue = instance.borderStyle(value); |
Javascript (Specification) | |
---|---|
function borderStyle( value : string ) : any; |
activeSheet.pictures.add("f2","Event.png",2,2,10,10); var picture = activeSheet.pictures.get("f2"); picture.pictureStretch(GC.Spread.Sheets.ImageLayout.center); picture.backColor("Blue"); picture.borderWidth(2); picture.borderColor("Red"); picture.borderStyle("dotted"); picture.borderRadius(5);
境界線スタイルの設定は、CSS境界線スタイルの設定と同じです。有効な値は次のとおりです。none、hidden、dotted、dashed、solid、double、groove、ridge、inset、outset、initial、inherit。