💾sheet.appendConditionalFormatRule()
GAS ⟩ app ⟩ prototypes ⟩ sheet.prototype ⟩ appendConditionalFormatRule()
// ┌────────────────────┐
// │ formatting Ranges │
// └────────────────────┘
// 🔸 sheet.appendConditionalFormatRule()
appendConditionalFormatRule(rule){
var rules = this.getConditionalFormatRules();
rules.push(rule);
this.setConditionalFormatRules(rules);
},
Last updated
Was this helpful?