存取 Conditional
中的漸層 (顏色) 條件。每個條件式格式規則最多可包含一個漸層條件。漸層條件是由沿著數字刻度 (最小、中間和最大) 的三個點定義,每個點都包含顏色、值和 Interpolation
。系統會將儲存格內容與數值刻度中的值進行比較,並根據儲存格內容與漸層條件最小、中間和最大點的接近程度,對套用至儲存格的顏色進行插補。
// Logs all the information inside gradient conditional format rules on a sheet. // The below snippet assumes all colors have ColorType.RGB. const sheet = SpreadsheetApp.getActiveSheet(); const rules = sheet.getConditionalFormatRules(); for (let i = 0; i < rules.length; i++) { const gradient = rules[i].getGradientCondition(); const minColor = gradient.getMinColorObject().asRgbColor().asHexString(); const minType = gradient.getMinType(); const minValue = gradient.getMinValue(); const midColor = gradient.getMidColorObject().asRgbColor().asHexString(); const midType = gradient.getMidType(); const midValue = gradient.getMidValue(); const maxColor = gradient.getMaxColorObject().asRgbColor().asHexString(); const maxType = gradient.getMaxType(); const maxValue = gradient.getMaxValue(); Logger.log(`The conditional format gradient information for rule ${i}: MinColor ${minColor}, MinType ${minType}, MinValue ${minValue}, MidColor ${midColor}, MidType ${midType}, MidValue ${midValue}, MaxColor ${maxColor}, MaxType ${maxType}, MaxValue ${maxValue}`); }
方法
方法 | 傳回類型 | 簡短說明 |
---|---|---|
get | Color | 取得此漸層條件的最大值所對應的顏色集。 |
get | Interpolation | 取得此漸層條件最大值的插補類型。 |
get | String | 取得此漸層條件中的最大值。 |
get | Color | 取得此漸層條件中點值的顏色集合。 |
get | Interpolation | 取得此漸層條件的中點值插補類型。 |
get | String | 取得此漸層條件的中間點值。 |
get | Color | 取得此漸層條件最小值的顏色集。 |
get | Interpolation | 取得此漸層條件最小值的插補類型。 |
get | String | 取得此漸層條件的最小值。 |
內容詳盡的說明文件
get Max Color Object()
get Max Type()
get Max Value()
get Mid Color Object()
get Mid Type()
get Mid Value()
取得此漸層條件的中間點值。如果未設定漸層中間值,則會傳回空字串。
回攻員
String
:中點值或空字串