GcSpread.Sheets Namespace > Sheet type : getGridlineOptions Method |
var instance = new GcSpread.Sheets.Sheet(name); var value; // Type: Object value = instance.getGridlineOptions();
function getGridlineOptions() : Object;
The following values can be returned:
options.color | string type | Specifies the color of the grid line. |
options.showVerticalGridline | boolean type | Specifies whether to display the vertical grid line. |
options.showHorizontalGridline | boolean type | Specifies whether to display the horizontal grid line. |
activeSheet.setGridlineOptions({color:"#FF2235", showVerticalGridline: true, showHorizontalGridline: false}); alert(activeSheet.getGridlineOptions().color);