Word.BorderType enum
Stellt den Rahmentyp dar.
Hinweise
Verwendet von
- Word. Rahmen: Typ
- Word. BorderCollection: insideBorderType, outsideBorderType
- Word. TableBorder: Typ
Beispiele
// 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 of the first table in the document.
await Word.run(async (context) => {
const firstTable: Word.Table = context.document.body.tables.getFirst();
const firstCell: Word.TableCell = firstTable.getCell(0, 0);
const borderLocation = "Left";
const border: Word.TableBorder = firstCell.getBorder(borderLocation);
border.load(["type", "color", "width"]);
await context.sync();
console.log(
`Details about the ${borderLocation} border of the first table's first cell:`,
`- Color: ${border.color}`,
`- Type: ${border.type}`,
`- Width: ${border.width} points`,
);
});
Felder
| dashDotStroked = "DashDotStroked" | Rahmen mit gestrichelten Punkten. |
| dashed = "Dashed" | Gestrichelter Rand. |
| dashedSmall = "DashedSmall" | Gestrichelter kleiner Rand. |
| dot2Dashed = "Dot2Dashed" | Doppelter gepunkteter Rahmen. |
| dotDashed = "DotDashed" | Gepunkteter Rahmen. |
| dotted = "Dotted" | Gepunkteter Rahmen. |
| double = "Double" | Doppelter Rand. |
| doubleWave = "DoubleWave" | Doppelwellen-Rand. |
| mixed = "Mixed" | Gemischter Rahmentyp. |
| none = "None" | Kein Rahmen |
| single = "Single" | Einfacher Rand. |
| thickThinLarge = "ThickThinLarge" | Dick-dünne große Bordüre. |
| thickThinMed = "ThickThinMed" | Dick-dünner mittlerer Rand. |
| thickThinSmall = "ThickThinSmall" | Dick-dünne kleine Bordüre. |
| thinThickLarge = "ThinThickLarge" | Dünn-dicker großer Rand. |
| thinThickMed = "ThinThickMed" | Dünn-dicker mittlerer Rand. |
| thinThickSmall = "ThinThickSmall" | Dünn-dicker kleiner Rand. |
| thinThickThinLarge = "ThinThickThinLarge" | Dünn-dick-dünn-dünn großer Rand. |
| thinThickThinMed = "ThinThickThinMed" | Dünn-dick-dünn-mittlerer Rand. |
| thinThickThinSmall = "ThinThickThinSmall" | Dünn-dick-dünn kleine Bordüre. |
| threeDEmboss = "ThreeDEmboss" | 3D-Prägungsrahmen. |
| threeDEngrave = "ThreeDEngrave" | 3D-Bordüre gravieren. |
| triple = "Triple" | Dreifacher Rand. |
| wave = "Wave" | Wellenrand. |