Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Word.BorderLocation enum

Package:
word

Represents the location of a border.

Remarks

API set: WordApi 1.3

Used by

Examples

// 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`,
 );
});

Fields

all = "All"

All borders.

bottom = "Bottom"

Bottom border.

inside = "Inside"

Inside border.

insideHorizontal = "InsideHorizontal"

Inside horizontal border.

insideVertical = "InsideVertical"

Inside vertical border.

left = "Left"

Left border.

outside = "Outside"

Outside border.

right = "Right"

Right border.

top = "Top"

Top border.


Feedback

Was this page helpful?