Word.BorderLocation enum
Representa a localização de um limite.
Comentários
[ Conjunto de API: WordApi 1.3 ]
Exemplos
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/40-tables/manage-formatting.yaml
// Gets border details about the first table in the document.
await Word.run(async (context) => {
const firstTable: Word.Table = context.document.body.tables.getFirst();
const borderLocation = Word.BorderLocation.top;
const border: Word.TableBorder = firstTable.getBorder(borderLocation);
border.load(["type", "color", "width"]);
await context.sync();
console.log(`Details about the ${borderLocation} border of the first table:`, `- Color: ${border.color}`, `- Type: ${border.type}`, `- Width: ${border.width} points`);
});
Campos
| all = "All" | Todos os limites. |
| bottom = "Bottom" | Limite inferior. |
| inside = "Inside" | Dentro do limite. |
| insideHorizontal = "InsideHorizontal" | Limite horizontal interior. |
| insideVertical = "InsideVertical" | Limite vertical interior. |
| left = "Left" | Limite esquerdo. |
| outside = "Outside" | Limite exterior. |
| right = "Right" | Limite direito. |
| top = "Top" | Limite superior. |