Word.BorderLocation enum
Représente l’emplacement d’une bordure.
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 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`);
});
Champs
| all = "All" | Toutes les bordures. |
| bottom = "Bottom" | Bordure inférieure. |
| inside = "Inside" | Bordure intérieure. |
| insideHorizontal = "InsideHorizontal" | Intérieur de la bordure horizontale. |
| insideVertical = "InsideVertical" | Intérieur de la bordure verticale. |
| left = "Left" | Bordure gauche. |
| outside = "Outside" | À l’extérieur de la frontière. |
| right = "Right" | Bordure droite. |
| top = "Top" | Bordure supérieure. |