Excel.CellPropertiesFillLoadOptions interface
format.fill
オブジェクトに読み込むプロパティを指定します。
注釈
プロパティ
color |
|
pattern |
|
pattern |
|
pattern |
|
tint |
|
プロパティの詳細
color
color
プロパティを読み込むかどうかを指定します。
color?: boolean;
プロパティ値
boolean
注釈
例
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/excel/42-range/cell-properties.yaml
await Excel.run(async (context) => {
const cell = context.workbook.getActiveCell();
// Define the cell properties to get by setting the matching LoadOptions to true.
const propertiesToGet = cell.getCellProperties({
address: true,
format: {
fill: {
color: true
},
font: {
color: true
}
},
style: true
});
// Sync to get the data from the workbook.
await context.sync();
const cellProperties = propertiesToGet.value[0][0];
console.log(
`Address: ${cellProperties.address}\nStyle: ${cellProperties.style}\nFill Color: ${cellProperties.format.fill.color}\nFont Color: ${cellProperties.format.font.color}`);
});
pattern
patternColor
patternColor
プロパティを読み込むかどうかを指定します。
patternColor?: boolean;
プロパティ値
boolean
注釈
patternTintAndShade
patternTintAndShade
プロパティを読み込むかどうかを指定します。
patternTintAndShade?: boolean;
プロパティ値
boolean
注釈
tintAndShade
tintAndShade
プロパティを読み込むかどうかを指定します。
tintAndShade?: boolean;
プロパティ値
boolean
注釈
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Add-ins