Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
Word.CellPaddingLocation enum
- Package:
- word
Represents the location of cell padding.
Remarks
Used by
- Word.Table: getCellPadding, setCellPadding
- Word.TableCell: getCellPadding, setCellPadding
- Word.TableRow: getCellPadding, setCellPadding
Examples
// 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`,
);
});
Fields
| bottom = "Bottom" | Padding at the bottom of the cell. |
| left = "Left" | Padding at the left of the cell. |
| right = "Right" | Padding at the right of the cell. |
| top = "Top" | Padding at the top of the cell. |
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Office Add-ins
Feedback
Was this page helpful?
