GcSpread.Sheets Namespace > Cell type : clearStyleProperty Method |
var instance = new GcSpread.Sheets.Cell(sheet, row, col, sheetArea); var value; // Type: any value = instance.clearStyleProperty(propertyName);
function clearStyleProperty( propertyName : string ) : any;
var style = new GcSpread.Sheets.Style(); style.backColor = "lightgreen"; activeSheet.setStyle(1,1,style,GcSpread.Sheets.SheetArea.viewport); activeSheet.getCell(1,1).clearStyleProperty("backColor");