Freigeben über


Word.StyleType enum

Stellt den Typ der Formatvorlage dar.

Hinweise

[ API-Satz: WordApi 1.5 ]

Beispiele

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

// Applies the specified style to a paragraph.
await Word.run(async (context) => {
  const styleName = $("#style-name-to-use").val() as string;
  if (styleName == "") {
    console.warn("Enter a style name to apply.");
    return;
  }

  const style = context.document.getStyles().getByNameOrNullObject(styleName);
  style.load();
  await context.sync();

  if (style.isNullObject) {
    console.warn(`There's no existing style with the name '${styleName}'.`);
  } else if (style.type != Word.StyleType.paragraph) {
    console.log(`The '${styleName}' style isn't a paragraph style.`);
  } else {
    const body = context.document.body;
    body.clear();
    body.insertParagraph(
      "Video provides a powerful way to help you prove your point. When you click Online Video, you can paste in the embed code for the video you want to add. You can also type a keyword to search online for the video that best fits your document.",
      "Start"
    );
    const paragraph = body.paragraphs.getFirst();
    paragraph.style = style.nameLocal;
    console.log(`'${styleName}' style applied to first paragraph.`);
  }
});

Felder

character = "Character"

Stellt dar, dass es sich bei der Formatvorlage um ein Zeichenformat handelt.

list = "List"

Stellt dar, dass es sich bei der Formatvorlage um ein Listenformat handelt. Wird derzeit auf dem Desktop unterstützt.

paragraph = "Paragraph"

Stellt dar, dass die Formatvorlage eine Absatzformatvorlage ist.

table = "Table"

Stellt dar, dass die Formatvorlage eine Tabellenformatvorlage ist.