Excel.VerticalAlignment enum
注釈
例
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/excel/42-range/style.yaml
await Excel.run(async (context) => {
let worksheet = context.workbook.worksheets.getItem("Sample");
let range = worksheet.getRange("A1:E1");
// Apply new style.
range.style = ("Diagonal Orientation Style");
range.format.verticalAlignment = "Justify";
await context.sync();
});
フィールド
bottom = "Bottom" | |
center = "Center" | |
distributed = "Distributed" | |
justify = "Justify" | |
top = "Top" |
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Add-ins