ExcelScript.PresetCriteriaConditionalFormat interface
上記の平均、以下の平均、一意の値などの事前設定された条件の条件付き形式を表します。空白、非ブランク、エラー、および noerror が含まれます。
注釈
例
/**
* This script applies a conditional format that uses a preset criterion.
* Any cell in row 1 will have the color fill set to green if it is a duplicate value
* (of anything else in row 1).
*/
function main(workbook: ExcelScript.Workbook) {
// Get the range for row 1.
const sheet = workbook.getActiveWorksheet();
const formattedRange = sheet.getRange("1:1");
// Add new conditional formatting to that range.
const conditionalFormat = formattedRange.addConditionalFormat(
ExcelScript.ConditionalFormatType.presetCriteria);
// Set the conditional formatting to apply a green fill.
const presetFormat: ExcelScript.PresetCriteriaConditionalFormat = conditionalFormat.getPreset();
presetFormat.getFormat().getFill().setColor("green");
// Set a rule to apply the conditional format when values are duplicated in the range.
const duplicateRule: ExcelScript.ConditionalPresetCriteriaRule = {
criterion: ExcelScript.ConditionalFormatPresetCriterion.duplicateValues
};
presetFormat.setRule(duplicateRule);
}
メソッド
get |
条件付き書式フォント、塗りつぶし、罫線、およびその他のプロパティをカプセル化して、書式オブジェクトを返します。 |
get |
条件付き書式のルール。 |
set |
条件付き書式のルール。 |
メソッドの詳細
getFormat()
条件付き書式フォント、塗りつぶし、罫線、およびその他のプロパティをカプセル化して、書式オブジェクトを返します。
getFormat(): ConditionalRangeFormat;
戻り値
getRule()
setRule(rule)
条件付き書式のルール。
setRule(rule: ConditionalPresetCriteriaRule): void;
パラメーター
戻り値
void
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Scripts