Note
Access to this page requires authorization. You can try signing in or .
Access to this page requires authorization. You can try .
Word.VerticalAlignment enum
- Package:
- word
Represents the vertical alignment of text.
Remarks
Used by
Examples
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/40-tables/manage-formatting.yaml
// Gets content alignment details about the first row of the first table in the document.
await Word.run(async (context) => {
const firstTable: Word.Table = context.document.body.tables.getFirst();
const firstTableRow: Word.TableRow = firstTable.rows.getFirst();
firstTableRow.load(["horizontalAlignment", "verticalAlignment"]);
await context.sync();
console.log(
`Details about the alignment of the first table's first row:`,
`- Horizontal alignment of every cell in the row: ${firstTableRow.horizontalAlignment}`,
`- Vertical alignment of every cell in the row: ${firstTableRow.verticalAlignment}`,
);
});
Fields
| bottom = "Bottom" | Bottom vertical alignment. |
| center = "Center" | Center vertical alignment. |
| mixed = "Mixed" | Mixed vertical alignment. |
| top = "Top" | Top vertical alignment. |
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?
