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

Parameters

value
The border color of the picture.

Return Value

If no value is set, returns the border color of the picture; otherwise, returns the picture.
Example
This example uses the borderColor 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