Поделиться через


Word.BodyType enum

Представляет типы объектов body.

Комментарии

[ Набор API: WordApi 1.3 ]

Примеры

// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/manage-footnotes.yaml

// Gets the referenced note's item type and body type, which are both "Footnote".
await Word.run(async (context) => {
  const footnotes: Word.NoteItemCollection = context.document.body.footnotes;
  footnotes.load("items");
  await context.sync();

  const referenceNumber = $("#input-reference").val();
  const mark = (referenceNumber as number) - 1;
  const item: Word.NoteItem = footnotes.items[mark];
  console.log(`Note type of footnote ${referenceNumber}: ${item.type}`);

  item.body.load("type");
  await context.sync();

  console.log(`Body type of note: ${item.body.type}`);
});

Поля

endnote = "Endnote"

Текст концевого сноска.

footer = "Footer"

Тело нижнего колонтитула.

footnote = "Footnote"

Текст сноски.

header = "Header"

Текст заголовка.

mainDoc = "MainDoc"

Основной текст документа.

noteItem = "NoteItem"

Текст заметки, например концевая сноска, сноска.

section = "Section"

Текст раздела.

shape = "Shape"

Тело фигуры.

tableCell = "TableCell"

Текст ячейки таблицы.

unknown = "Unknown"

Неизвестный тип текста.