Excel.ClearApplyTo enum
注釈
例
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/excel/42-range/range-hyperlink.yaml
await Excel.run(async (context) => {
const sheet = context.workbook.worksheets.getItem("Orders");
const productsRange = sheet.getRange("A3:A11");
productsRange.load("values");
await context.sync();
// Clear all hyperlinks.
for (let i = 0; i < productsRange.values.length; i++) {
let cellRange = productsRange.getCell(i, 0);
// Clear the hyperlink.
// This removes the hyperlink but does not update text format.
cellRange.clear(Excel.ClearApplyTo.hyperlinks);
// Update text format.
cellRange.format.font.underline = Excel.RangeUnderlineStyle.none;
cellRange.format.font.color = "#000000";
}
await context.sync();
});
フィールド
all = "All" | 範囲内のすべてをクリアします。 |
contents = "Contents" | 範囲の内容をクリアし、書式設定はそのままにします。 |
formats = "Formats" | 範囲のすべての書式設定をクリアし、値はそのままにします。 |
hyperlinks = "Hyperlinks" | すべてのハイパーリンクをクリアしますが、すべてのコンテンツと書式設定はそのままにします。 |
removeHyperlinks = "RemoveHyperlinks" | セルのハイパーリンクと書式設定を削除しますが、コンテンツ、条件付き書式、およびデータ検証はそのまま残します。 |
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Add-ins