Word.CellPaddingLocation enum
Représente l’emplacement du remplissage des cellules.
Remarques
[ Ensemble d’API : WordApi 1.3 ]
Exemples
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/40-tables/manage-formatting.yaml
// Gets cell padding details about the first table in the document.
await Word.run(async (context) => {
const firstTable: Word.Table = context.document.body.tables.getFirst();
const cellPaddingLocation = Word.CellPaddingLocation.right;
const cellPadding = firstTable.getCellPadding(cellPaddingLocation);
await context.sync();
console.log(
`Cell padding details about the ${cellPaddingLocation} border of the first table: ${cellPadding.value} points`
);
});
Champs
| bottom = "Bottom" | Remplissage au bas de la cellule. |
| left = "Left" | Remplissage à gauche de la cellule. |
| right = "Right" | Remplissage à droite de la cellule. |
| top = "Top" | Remplissage en haut de la cellule. |