GcSpread.Sheets Namespace > Sheet type : getActualStyle Method |
true
, the row filter and the conditional format style are not applied to the return style; otherwise, the return style only contains the cell's inherited style.
var instance = new GcSpread.Sheets.Sheet(name); var value; // Type: Style value = instance.getActualStyle(row, column, sheetArea, sheetStyleOnly);
true
, the row filter and the conditional format style are not applied to the return style; otherwise, the return style only contains the cell's inherited style.var style = new GcSpread.Sheets.Style(); style.backColor = "red"; style.borderLeft =new GcSpread.Sheets.LineBorder("blue"); style.borderTop = new GcSpread.Sheets.LineBorder("blue"); style.borderRight = new GcSpread.Sheets.LineBorder("blue"); style.borderBottom = new GcSpread.Sheets.LineBorder("blue"); activeSheet.setStyle(1,1,style,GcSpread.Sheets.SheetArea.viewport); var cstyle = activeSheet.getActualStyle(1,1,GcSpread.Sheets.SheetArea.viewport, true); alert(cstyle.backColor);