GcSpread.Sheets Namespace > Row type : clearStyleProperty Method |
var instance = new GcSpread.Sheets.Row(sheet, index, 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.getRow(1).clearStyleProperty("backColor");