Spread.Sheets Documentation
borderWidth Method
GC.Spread.Sheets.FloatingObjects Namespace > Picture type : borderWidth Method
The border width of the picture.
Gets or sets the border width of the picture.
Syntax
var instance = new GC.Spread.Sheets.FloatingObjects.Picture(name, src, x, y, width, height);
var returnValue; // Type: any
returnValue = instance.borderWidth(value);
function borderWidth( 
   value : number
) : any;

Parameters

value
The border width of the picture.

Return Value

If no value is set, returns the border width of the picture; otherwise, returns the picture.
Example
This example uses the borderWidth method.
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");
See Also

Reference

Picture type