GcSpread.Sheets Namespace > ConditionalFormats type : addTop10Rule Method |
var instance = new GcSpread.Sheets.ConditionalFormats(worksheet); var value; // Type: object value = instance.addTop10Rule(type, rank, style, ranges);
var style = new GcSpread.Sheets.Style(); style.backColor = "red"; activeSheet.setValue(0, 0, 1); activeSheet.setValue(1, 0, 50); activeSheet.setValue(2, 0, 11); activeSheet.setValue(3, 0, 5); activeSheet.getConditionalFormats().addTop10Rule(GcSpread.Sheets.Top10ConditionType.Top, 2, style, [new GcSpread.Sheets.Range(0,0,10,1)]);