Word.BorderLocation enum

罫線の場所を表します

注釈

API セット: WordApi 1.3

使用元

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

フィールド

all = "All"

すべての罫線。

bottom = "Bottom"

下縁取り。

inside = "Inside"

内側の縁取り。

insideHorizontal = "InsideHorizontal"

水平罫線の内側。

insideVertical = "InsideVertical"

縦枠の内側。

left = "Left"

左枠線。

outside = "Outside"

外側の境界線。

right = "Right"

右枠線。

top = "Top"

上枠。