Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Absatzausrichtung
Die Textausrichtungstypen für einen Absatz.
Wenn Sie ein Enum aufrufen möchten, rufen Sie die übergeordnete Klasse, den Namen und die Eigenschaft auf. Beispiel:
SlidesApp.ParagraphAlignment.START.
Attribute
Attribut
Typ
Beschreibung
UNSUPPORTED
Enum
Eine nicht unterstützte Absatzausrichtung.
START
Enum
Der Absatz ist am Zeilenanfang ausgerichtet. Linksbündig für linksläufigen Text, andernfalls rechtsbündig.
CENTER
Enum
Der Absatz ist zentriert.
END
Enum
Der Absatz ist am Ende der Zeile ausgerichtet. Bei linksläufigem Text rechtsbündig, andernfalls linksbündig.
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Benötigte Informationen nicht gefunden","missingTheInformationINeed","thumb-down"],["Zu umständlich/zu viele Schritte","tooComplicatedTooManySteps","thumb-down"],["Nicht mehr aktuell","outOfDate","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Problem mit Beispielen/Code","samplesCodeIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["Zuletzt aktualisiert: 2024-12-02 (UTC)."],[[["`ParagraphAlignment` determines how a paragraph's text is aligned within its containing element."],["It includes five alignment options: `UNSUPPORTED`, `START`, `CENTER`, `END`, and `JUSTIFIED`."],["Alignment options like `START` and `END` are relative to text direction, adjusting for left-to-right or right-to-left languages."],["You can set a paragraph's alignment using the syntax: `SlidesApp.ParagraphAlignment.[Alignment Option]`."]]],["Paragraph alignment types are defined as an enum, accessible via `SlidesApp.ParagraphAlignment`. The available properties are: `UNSUPPORTED` for unsupported alignments, `START` aligning to the beginning of the line, `CENTER` for centering, `END` aligning to the end of the line, and `JUSTIFIED` for justified alignment. `START` and `END` are context-dependent based on text directionality. Each property is an enum type.\n"]]