Spread.Sheets Documentation
backColor Method
The backcolor of the picture.
Gets or sets the background 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.backColor(value);
function backColor( 
   value : string
) : any;

Parameters

value
The backcolor of the picture.

Return Value

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

 

 


Copyright © GrapeCity, inc. All rights reserved.

Send comments on this topic.