Excel.FilterOn enum
注釈
例
// This function adds a custom AutoFilter to the active worksheet
// and applies the filter to a column of the used range.
await Excel.run(async (context) => {
// Retrieve the active worksheet and the used range on that worksheet.
const sheet = context.workbook.worksheets.getActiveWorksheet();
const farmData = sheet.getUsedRange();
// Add a filter that will only show the rows with values that end with the letter "e" in column 1.
sheet.autoFilter.apply(farmData, 1, {
criterion1: "=*e",
filterOn: Excel.FilterOn.custom
});
await context.sync();
});
フィールド
bottomItems = "BottomItems" | |
bottomPercent = "BottomPercent" | |
cellColor = "CellColor" | |
custom = "Custom" | |
dynamic = "Dynamic" | |
fontColor = "FontColor" | |
icon = "Icon" | |
topItems = "TopItems" | |
topPercent = "TopPercent" | |
values = "Values" |
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Add-ins