Word.BorderWidth enum
Stellt die Breite des Rahmens einer Formatvorlage dar.
Hinweise
[ API-Satz: WordApiDesktop 1.1 ]
Beispiele
// Link to full sample: https://raw.githubusercontent.com/OfficeDev/office-js-snippets/prod/samples/word/50-document/manage-styles.yaml
// Updates border properties (e.g., type, width, color) of the specified style.
await Word.run(async (context) => {
const styleName = $("#style-name").val() as string;
if (styleName == "") {
console.warn("Enter a style name to update border properties.");
return;
}
const style: Word.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 {
const borders: Word.BorderCollection = style.borders;
borders.load("items");
await context.sync();
borders.outsideBorderType = Word.BorderType.dashed;
borders.outsideBorderWidth = Word.BorderWidth.pt025;
borders.outsideBorderColor = "green";
console.log("Updated outside borders.");
}
});
Felder
mixed = "Mixed" | Gemischte Breite. |
none = "None" | Keine Breite. |
pt025 = "Pt025" | 0,25 Punkt. |
pt050 = "Pt050" | 0,50 Punkt. |
pt075 = "Pt075" | 0,75 Punkt. |
pt100 = "Pt100" | 1,00 Punkt. Dies ist die Standardeinstellung. |
pt150 = "Pt150" | 1,50 Punkt. |
pt225 = "Pt225" | 2,25 Punkt. |
pt300 = "Pt300" | 3,00 Punkt. |
pt450 = "Pt450" | 4,50 Punkt. |
pt600 = "Pt600" | 6,00 Punkt. |
Zusammenarbeit auf GitHub
Die Quelle für diesen Inhalt finden Sie auf GitHub, wo Sie auch Issues und Pull Requests erstellen und überprüfen können. Weitere Informationen finden Sie in unserem Leitfaden für Mitwirkende.
Office Add-ins