Ein Element, das einen Rich-Text-Bereich darstellt. Der gesamte Text in einem Document
-Element ist in Text
-Elementen enthalten.
Ein Text
-Element kann in einem Equation
-, Equation
-, List
- oder Paragraph
-Element enthalten sein, darf aber selbst kein anderes Element enthalten. Weitere Informationen zur Dokumentstruktur finden Sie im Leitfaden zum Erweitern von Google Docs.
// Gets the body contents of the active tab. const body = DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody(); // Use editAsText to obtain a single text element containing // all the characters in the tab. const text = body.editAsText(); // Insert text at the beginning of the tab. text.insertText(0, 'Inserted text.\n'); // Insert text at the end of the tab. text.appendText('\nAppended text.'); // Make the first half of the tab blue. text.setForegroundColor(0, text.getText().length / 2, '#00FFFF');
Methoden
Methode | Rückgabetyp | Kurzbeschreibung |
---|---|---|
append | Text | Fügen Sie den angegebenen Text am Ende dieses Textbereichs ein. |
copy() | Text | Gibt eine losgelöste, tiefe Kopie des aktuellen Elements zurück. |
delete | Text | Löscht einen Textabschnitt. |
edit | Text | Ruft eine Text -Version des aktuellen Elements zur Bearbeitung ab. |
find | Range | Es wird mit regulären Ausdrücken im Inhalt des Elements nach dem angegebenen Textmuster gesucht. |
find | Range | Es wird im Inhalt des Elements nach dem angegebenen Textmuster gesucht, beginnend bei einem bestimmten Suchergebnis. |
get | Object | Ruft die Attribute des Elements ab. |
get | Object | Ruft die Attribute am angegebenen Zeichenoffset ab. |
get | String | Ruft die Einstellung für die Hintergrundfarbe ab. |
get | String | Ruft die Hintergrundfarbe am angegebenen Zeichenoffset ab. |
get | String | Ruft die Einstellung für die Schriftfamilie ab. |
get | String | Ruft die Schriftfamilie am angegebenen Zeichenoffset ab. |
get | Number | Ruft die Einstellung für die Schriftgröße ab. |
get | Number | Ruft die Schriftgröße am angegebenen Zeichenoffset ab. |
get | String | Ruft die Einstellung für die Vordergrundfarbe ab. |
get | String | Ruft die Vordergrundfarbe am angegebenen Zeichenoffset ab. |
get | String | Ruft die Link-URL ab. |
get | String | Ruft die Link-URL am angegebenen Zeichenoffset ab. |
get | Element | Ruft das nächste gleichgeordnete Element des Elements ab. |
get | Container | Ruft das übergeordnete Element des Elements ab. |
get | Element | Ruft das vorherige gleichgeordnete Element des Elements ab. |
get | String | Ruft den Inhalt des Elements als Textstring ab. |
get | Text | Die Textausrichtung wird abgerufen. |
get | Text | Ruft die Textausrichtung für ein einzelnes Zeichen ab. |
get | Integer[] | Ruft die Textindizes ab, die dem Beginn verschiedener Textformatierungsblöcke entsprechen. |
get | Element | Ruft den Element des Elements ab. |
insert | Text | Fügt den angegebenen Text am angegebenen Zeichen-Offset ein. |
is | Boolean | Bestimmt, ob sich das Element am Ende des Document befindet. |
is | Boolean | Ruft die Fettdruckeinstellung ab. |
is | Boolean | Ruft die Fettdruckeinstellung am angegebenen Zeichenoffset ab. |
is | Boolean | Ruft die Einstellung für Kursivschrift ab. |
is | Boolean | Ruft die Einstellung für Kursivschrift am angegebenen Zeichenoffset ab. |
is | Boolean | Ruft die Einstellung für Durchgestrichen zurück. |
is | Boolean | Ruft die Durchstreichungseinstellung am angegebenen Zeichenoffset ab. |
is | Boolean | Ruft die Unterstreichungseinstellung ab. |
is | Boolean | Ruft die Unterstreichungseinstellung am angegebenen Zeichenoffset ab. |
merge() | Text | Das Element wird mit dem vorhergehenden Geschwisterelement desselben Typs zusammengeführt. |
remove | Text | Entfernt das Element aus dem übergeordneten Element. |
replace | Element | Ersetzt alle Vorkommen eines bestimmten Textmusters durch einen bestimmten Ersatzstring mithilfe von regulären Ausdrücken. |
set | Text | Wendet die angegebenen Attribute auf den angegebenen Zeichenbereich an. |
set | Text | Hiermit werden die Attribute des Elements festgelegt. |
set | Text | Legt die Hintergrundfarbe für den angegebenen Zeichenbereich fest. |
set | Text | Hier legen Sie die Hintergrundfarbe fest. |
set | Text | Hier legen Sie die Fettdruckeinstellung fest. |
set | Text | Legt die Fettdruckeinstellung für den angegebenen Zeichenbereich fest. |
set | Text | Hiermit wird die Schriftfamilie für den angegebenen Zeichenbereich festgelegt. |
set | Text | Hiermit wird die Schriftfamilie festgelegt. |
set | Text | Legt die Schriftgröße für den angegebenen Zeichenbereich fest. |
set | Text | Hiermit wird die Schriftgröße festgelegt. |
set | Text | Legt die Vordergrundfarbe für den angegebenen Zeichenbereich fest. |
set | Text | Hiermit wird die Vordergrundfarbe festgelegt. |
set | Text | Hier legen Sie die Einstellung für Kursivschrift fest. |
set | Text | Legt die Einstellung für Kursivschrift für den angegebenen Zeichenbereich fest. |
set | Text | Legt die Link-URL für den angegebenen Zeichenbereich fest. |
set | Text | Legt die Link-URL fest. |
set | Text | Legt die Durchgestrichen-Einstellung fest. |
set | Text | Legt die Durchstreichung für den angegebenen Zeichenbereich fest. |
set | Text | Legt den Textinhalt fest. |
set | Text | Hiermit wird die Textausrichtung für einen bestimmten Zeichenbereich festgelegt. |
set | Text | Hiermit wird die Textausrichtung festgelegt. |
set | Text | Legt die Unterstreichungseinstellung fest. |
set | Text | Legt die Unterstreichungseinstellung für den angegebenen Zeichenbereich fest. |
Detaillierte Dokumentation
append Text(text)
Fügen Sie den angegebenen Text am Ende dieses Textbereichs ein.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Adds the text, 'Sample body text,' to the end of the tab body. const text = body.editAsText().appendText('Sample body text');
Parameter
Name | Typ | Beschreibung |
---|---|---|
text | String | Der anzufügende Text. |
Rückflug
Text
: Das aktuelle Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
copy()
Gibt eine losgelöste, tiefe Kopie des aktuellen Elements zurück.
Alle untergeordneten Elemente im Element werden ebenfalls kopiert. Das neue Element hat kein übergeordnetes Element.
Rückflug
Text
– die neue Kopie.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
delete Text(startOffset, endOffsetInclusive)
Löscht einen Textabschnitt.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Deletes the first 10 characters in the body. const text = body.editAsText().deleteText(0, 9);
Parameter
Name | Typ | Beschreibung |
---|---|---|
start | Integer | Der Zeichenoffset des ersten Zeichens, das gelöscht werden soll. |
end | Integer | Der Zeichenoffset des letzten Zeichens, das gelöscht werden soll. |
Rückflug
Text
: Das aktuelle Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
edit As Text()
Ruft eine Text
-Version des aktuellen Elements zur Bearbeitung ab.
Verwenden Sie edit
, um den Inhalt des Elements als Rich-Text zu bearbeiten. Im edit
-Modus werden nicht textbasierte Elemente wie Inline
und Horizontal
ignoriert.
Untergeordnete Elemente, die vollständig in einem gelöschten Textbereich enthalten sind, werden aus dem Element entfernt.
const body = DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody(); // Insert two paragraphs separated by a paragraph containing an // horizontal rule. body.insertParagraph(0, 'An editAsText sample.'); body.insertHorizontalRule(0); body.insertParagraph(0, 'An example.'); // Delete " sample.\n\n An" removing the horizontal rule in the process. body.editAsText().deleteText(14, 25);
Rückflug
Text
: eine Textversion des aktuellen Elements
find Text(searchPattern)
Es wird mit regulären Ausdrücken im Inhalt des Elements nach dem angegebenen Textmuster gesucht.
Einige der Funktionen für reguläre Ausdrücke in JavaScript werden nicht vollständig unterstützt, z. B. Erfassungsgruppen und Modusmodifikatoren.
Das angegebene reguläre Ausdrucksmuster wird unabhängig mit jedem Textblock im aktuellen Element abgeglichen.
Parameter
Name | Typ | Beschreibung |
---|---|---|
search | String | das zu suchende Muster |
Rückflug
Range
: ein Suchergebnis, das die Position des Suchtexts angibt, oder „null“, wenn keine Übereinstimmung gefunden wurde
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
find Text(searchPattern, from)
Es wird im Inhalt des Elements nach dem angegebenen Textmuster gesucht, beginnend bei einem bestimmten Suchergebnis.
Einige der Funktionen für reguläre Ausdrücke in JavaScript werden nicht vollständig unterstützt, z. B. Erfassungsgruppen und Modusmodifikatoren.
Das angegebene reguläre Ausdrucksmuster wird unabhängig mit jedem Textblock im aktuellen Element abgeglichen.
Parameter
Name | Typ | Beschreibung |
---|---|---|
search | String | das zu suchende Muster |
from | Range | das Suchergebnis, in dem gesucht werden soll |
Rückflug
Range
: ein Suchergebnis, das die nächste Position des Suchtexts angibt, oder „null“, wenn keine Übereinstimmung gefunden wurde
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Attributes()
Ruft die Attribute des Elements ab.
Das Ergebnis ist ein Objekt mit einer Property für jedes gültige Elementattribut, wobei jeder Property-Name einem Element in der Document
-Aufzählung entspricht.
const doc = DocumentApp.getActiveDocument(); const documentTab = doc.getActiveTab().asDocumentTab(); const body = documentTab.getBody(); // Append a styled paragraph. const par = body.appendParagraph('A bold, italicized paragraph.'); par.setBold(true); par.setItalic(true); // Retrieve the paragraph's attributes. const atts = par.getAttributes(); // Log the paragraph attributes. for (const att in atts) { Logger.log(`${att}:${atts[att]}`); }
Rückflug
Object
: Die Attribute des Elements.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Attributes(offset)
Ruft die Attribute am angegebenen Zeichenoffset ab.
Das Ergebnis ist ein Objekt mit einer Property für jedes gültige Textattribut, wobei jeder Property-Name einem Element in der Document
-Aufzählung entspricht.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Declares style attributes. const style = {}; style[DocumentApp.Attribute.BOLD] = true; style[DocumentApp.Attribute.ITALIC] = true; style[DocumentApp.Attribute.FONT_SIZE] = 29; // Sets the style attributes to the tab's body. const text = body.editAsText(); text.setAttributes(style); // Gets the style attributes applied to the eleventh character in the // body and logs them to the console. const attributes = text.getAttributes(10); console.log(attributes);
Parameter
Name | Typ | Beschreibung |
---|---|---|
offset | Integer | Der Zeichenabstand. |
Rückflug
Object
: Die Attribute des Elements.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Background Color()
Ruft die Einstellung für die Hintergrundfarbe ab.
Rückflug
String
: die Hintergrundfarbe, formatiert in CSS-Notation (z. B. '#ffffff'
) oder „null“, wenn das Element mehrere Werte für dieses Attribut enthält
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Background Color(offset)
Ruft die Hintergrundfarbe am angegebenen Zeichenoffset ab.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Sets the background color of the first 3 characters in the body. const text = body.editAsText().setBackgroundColor(0, 2, '#FFC0CB'); // Gets the background color of the first character in the body. const backgroundColor = text.getBackgroundColor(0); // Logs the background color to the console. console.log(backgroundColor);
Parameter
Name | Typ | Beschreibung |
---|---|---|
offset | Integer | Der Zeichenabstand. |
Rückflug
String
: Die Hintergrundfarbe, formatiert in CSS-Notation (z. B. '#ffffff'
).
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Font Family()
Ruft die Einstellung für die Schriftfamilie ab. Der Name kann eine beliebige Schriftart aus dem Menü „Schriftart“ in Google Docs oder Google Fonts sein. Dabei wird zwischen Groß- und Kleinschreibung unterschieden. Bei den Methoden get
und set
werden jetzt Stringnamen für Schriftarten anstelle des
-Eintrags verwendet. Dieses Enum ist zwar veraltet, bleibt aber zur Abwärtskompatibilität mit älteren Scripts verfügbar.Font
Rückflug
String
: die Schriftfamilie oder „null“, wenn das Element mehrere Werte für dieses Attribut enthält
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Font Family(offset)
Ruft die Schriftfamilie am angegebenen Zeichenoffset ab. Der Name kann eine beliebige Schriftart aus dem Menü „Schriftart“ in Google Docs oder Google Fonts sein. Dabei wird zwischen Groß- und Kleinschreibung unterschieden. Bei den Methoden get
und set
werden jetzt Stringnamen für Schriftarten anstelle des
-Eintrags verwendet. Dieses Enum ist zwar veraltet, bleibt aber zur Abwärtskompatibilität mit älteren Scripts verfügbar.
Font
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Sets the font of the first 16 characters to Impact. const text = body.editAsText().setFontFamily(0, 15, 'Impact'); // Gets the font family of the 16th character in the tab body. const fontFamily = text.getFontFamily(15); // Logs the font family to the console. console.log(fontFamily);
Parameter
Name | Typ | Beschreibung |
---|---|---|
offset | Integer | Der Zeichenabstand. |
Rückflug
String
: Schriftfamilie.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Font Size()
Ruft die Einstellung für die Schriftgröße ab.
Rückflug
Number
: Schriftgröße oder „null“, wenn das Element mehrere Werte für dieses Attribut enthält
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Font Size(offset)
Ruft die Schriftgröße am angegebenen Zeichenoffset ab.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Sets the font size of the first 13 characters to 15. const text = body.editAsText().setFontSize(0, 12, 15); // Gets the font size of the first character. const fontSize = text.getFontSize(0); // Logs the font size to the console. console.log(fontSize);
Parameter
Name | Typ | Beschreibung |
---|---|---|
offset | Integer | Der Zeichenabstand. |
Rückflug
Number
: Schriftgröße.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Foreground Color()
Ruft die Einstellung für die Vordergrundfarbe ab.
Rückflug
String
: die Vordergrundfarbe, formatiert in CSS-Notation (z. B. '#ffffff'
) oder „null“, wenn das Element mehrere Werte für dieses Attribut enthält
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Foreground Color(offset)
Ruft die Vordergrundfarbe am angegebenen Zeichenoffset ab.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Sets the foreground color of the first 3 characters in the tab body. const text = body.editAsText().setForegroundColor(0, 2, '#0000FF'); // Gets the foreground color of the first character in the tab body. const foregroundColor = text.getForegroundColor(0); // Logs the foreground color to the console. console.log(foregroundColor);
Parameter
Name | Typ | Beschreibung |
---|---|---|
offset | Integer | Der Zeichenabstand. |
Rückflug
String
: Die Vordergrundfarbe, formatiert in CSS-Notation (z. B. '#ffffff'
).
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Link Url()
Ruft die Link-URL ab.
Rückflug
String
: die Link-URL oder „null“, wenn das Element mehrere Werte für dieses Attribut enthält
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Link Url(offset)
Ruft die Link-URL am angegebenen Zeichenoffset ab.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Applies a link to the first 10 characters in the body. const text = body.editAsText().setLinkUrl(0, 9, 'https://www.example.com/'); // Gets the URL of the link from the first character. const link = text.getLinkUrl(0); // Logs the link URL to the console. console.log(link);
Parameter
Name | Typ | Beschreibung |
---|---|---|
offset | Integer | Der Zeichenabstand. |
Rückflug
String
: Die Link-URL.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Next Sibling()
Ruft das nächste gleichgeordnete Element des Elements ab.
Das nächste gleichgeordnete Element hat dasselbe übergeordnete Element und folgt dem aktuellen Element.
Rückflug
Element
: Das nächste gleichgeordnete Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Parent()
Ruft das übergeordnete Element des Elements ab.
Das übergeordnete Element enthält das aktuelle Element.
Rückflug
Container
: Das übergeordnete Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Previous Sibling()
Ruft das vorherige gleichgeordnete Element des Elements ab.
Das vorherige gleichgeordnete Element hat dasselbe übergeordnete Element und geht dem aktuellen Element voraus.
Rückflug
Element
: Das vorherige gleichgeordnete Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Text()
Ruft den Inhalt des Elements als Textstring ab.
Rückflug
String
: Der Inhalt des Elements als Textstring
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Text Alignment()
Die Textausrichtung wird abgerufen. Verfügbare Ausrichtungstypen sind Document
, Document
und Document
.
Rückflug
Text
– die Art der Textausrichtung oder null
, wenn der Text mehrere Textausrichtungen enthält oder die Textausrichtung noch nie festgelegt wurde
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Text Alignment(offset)
Ruft die Textausrichtung für ein einzelnes Zeichen ab. Verfügbare Ausrichtungstypen sind Document
, Document
und Document
.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Sets the text alignment of the tab's body to NORMAL. const text = body.editAsText().setTextAlignment(DocumentApp.TextAlignment.NORMAL); // Gets the text alignment of the ninth character. const alignment = text.getTextAlignment(8); // Logs the text alignment to the console. console.log(alignment.toString());
Parameter
Name | Typ | Beschreibung |
---|---|---|
offset | Integer | Der Offset des Zeichens. |
Rückflug
Text
: Die Art der Textausrichtung oder null
, wenn die Textausrichtung noch nie festgelegt wurde.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Text Attribute Indices()
Ruft die Textindizes ab, die dem Beginn verschiedener Textformatierungsblöcke entsprechen.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Gets the text indices at which text formatting changes. const indices = body.editAsText().getTextAttributeIndices(); // Logs the indices to the console. console.log(indices.toString());
Rückflug
Integer[]
: Textindexe, bei denen sich die Textformatierung ändert.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
get Type()
Ruft den Element
des Elements ab.
Mit get
können Sie den genauen Typ eines bestimmten Elements ermitteln.
const doc = DocumentApp.getActiveDocument(); const documentTab = doc.getActiveTab().asDocumentTab(); const body = documentTab.getBody(); // Obtain the first element in the active tab's body. const firstChild = body.getChild(0); // Use getType() to determine the element's type. if (firstChild.getType() === DocumentApp.ElementType.PARAGRAPH) { Logger.log('The first element is a paragraph.'); } else { Logger.log('The first element is not a paragraph.'); }
Rückflug
Element
: Der Elementtyp.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
insert Text(offset, text)
Fügt den angegebenen Text am angegebenen Zeichen-Offset ein.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Inserts the text, 'Sample inserted text', at the start of the body content. const text = body.editAsText().insertText(0, 'Sample inserted text');
Parameter
Name | Typ | Beschreibung |
---|---|---|
offset | Integer | Das Zeichen-Offset, an dem der Text eingefügt werden soll. |
text | String | Der einzufügende Text. |
Rückflug
Text
: Das aktuelle Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
is At Document End()
Bestimmt, ob sich das Element am Ende des Document
befindet.
Rückflug
Boolean
: Gibt an, ob sich das Element am Ende des Tabs befindet.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
is Bold()
Ruft die Fettdruckeinstellung ab.
Rückflug
Boolean
: Gibt an, ob der Text fett formatiert ist, oder „null“, wenn das Element mehrere Werte für dieses Attribut enthält.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
is Bold(offset)
Ruft die Fettdruckeinstellung am angegebenen Zeichenoffset ab.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Bolds the first 4 characters in the tab body. const text = body.editAsText().setBold(0, 3, true); // Gets whether or not the text is bold. const bold = text.editAsText().isBold(0); // Logs the text's bold setting to the console console.log(bold);
Parameter
Name | Typ | Beschreibung |
---|---|---|
offset | Integer | Der Zeichenabstand. |
Rückflug
Boolean
– die Fettdruckeinstellung.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
is Italic()
Ruft die Einstellung für Kursivschrift ab.
Rückflug
Boolean
: Gibt an, ob der Text kursiv ist, oder „null“, wenn das Element mehrere Werte für dieses Attribut enthält.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
is Italic(offset)
Ruft die Einstellung für Kursivschrift am angegebenen Zeichenoffset ab.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Sets the first 13 characters of the tab body to italic. const text = body.editAsText().setItalic(0, 12, true); // Gets whether the fifth character in the tab body is set to // italic and logs it to the console. const italic = text.isItalic(4); console.log(italic);
Parameter
Name | Typ | Beschreibung |
---|---|---|
offset | Integer | Der Zeichenabstand. |
Rückflug
Boolean
– die Einstellung für Kursivschrift.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
is Strikethrough()
Ruft die Einstellung für Durchgestrichen zurück.
Rückflug
Boolean
: Gibt an, ob der Text durchgestrichen ist, oder „null“, wenn das Element mehrere Werte für dieses Attribut enthält.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
is Strikethrough(offset)
Ruft die Durchstreichungseinstellung am angegebenen Zeichenoffset ab.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Sets the first 17 characters of the tab body to strikethrough. const text = body.editAsText().setStrikethrough(0, 16, true); // Gets whether the first character in the tab body is set to // strikethrough and logs it to the console. const strikethrough = text.isStrikethrough(0); console.log(strikethrough);
Parameter
Name | Typ | Beschreibung |
---|---|---|
offset | Integer | Der Zeichenabstand. |
Rückflug
Boolean
: Einstellung für durchgestrichene Preise.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
is Underline()
Ruft die Unterstreichungseinstellung ab.
Rückflug
Boolean
: Gibt an, ob der Text unterstrichen ist, oder „null“, wenn das Element mehrere Werte für dieses Attribut enthält.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
is Underline(offset)
Ruft die Unterstreichungseinstellung am angegebenen Zeichenoffset ab.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Sets the first 13 characters of the tab body to underline. const text = body.editAsText().setUnderline(0, 12, false); // Gets whether the first character in the tab body is set to // underline and logs it to the console const underline = text.editAsText().isUnderline(0); console.log(underline);
Parameter
Name | Typ | Beschreibung |
---|---|---|
offset | Integer | Der Zeichenabstand. |
Rückflug
Boolean
: Einstellung für Unterstreichungen.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
merge()
Das Element wird mit dem vorhergehenden Geschwisterelement desselben Typs zusammengeführt.
Es können nur Elemente desselben Element
zusammengeführt werden. Alle untergeordneten Elemente, die sich im aktuellen Element befinden, werden zum übergeordneten Element verschoben.
Das aktuelle Element wird aus dem Dokument entfernt.
const doc = DocumentApp.getActiveDocument(); const documentTab = doc.getActiveTab().asDocumentTab(); const body = documentTab.getBody(); // Example 1: Merge paragraphs // Append two paragraphs to the document's active tab. const par1 = body.appendParagraph('Paragraph 1.'); const par2 = body.appendParagraph('Paragraph 2.'); // Merge the newly added paragraphs into a single paragraph. par2.merge(); // Example 2: Merge table cells // Create a two-dimensional array containing the table's cell contents. const cells = [ ['Row 1, Cell 1', 'Row 1, Cell 2'], ['Row 2, Cell 1', 'Row 2, Cell 2'], ]; // Build a table from the array. const table = body.appendTable(cells); // Get the first row in the table. const row = table.getRow(0); // Get the two cells in this row. const cell1 = row.getCell(0); const cell2 = row.getCell(1); // Merge the current cell into its preceding sibling element. const merged = cell2.merge();
Rückflug
Text
– das zusammengeführte Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
remove From Parent()
Entfernt das Element aus dem übergeordneten Element.
const doc = DocumentApp.getActiveDocument(); const documentTab = doc.getActiveTab().asDocumentTab(); const body = documentTab.getBody(); // Remove all images in the active tab's body. const imgs = body.getImages(); for (let i = 0; i < imgs.length; i++) { imgs[i].removeFromParent(); }
Rückflug
Text
: Das entfernte Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
replace Text(searchPattern, replacement)
Ersetzt alle Vorkommen eines bestimmten Textmusters durch einen bestimmten Ersatzstring mithilfe von regulären Ausdrücken.
Das Suchmuster wird als String übergeben, nicht als JavaScript-Objekt für reguläre Ausdrücke. Aus diesem Grund müssen alle umgekehrten Schrägstriche im Muster maskiert werden.
Bei dieser Methode wird die reguläre Ausdrucksbibliothek RE2 von Google verwendet, was die unterstützte Syntax einschränkt.
Das angegebene reguläre Ausdrucksmuster wird unabhängig mit jedem Textblock im aktuellen Element abgeglichen.
const body = DocumentApp.getActiveDocument().getActiveTab().asDocumentTab().getBody(); // Clear the text surrounding "Apps Script", with or without text. body.replaceText('^.*Apps ?Script.*$', 'Apps Script');
Parameter
Name | Typ | Beschreibung |
---|---|---|
search | String | das Regex-Muster, nach dem gesucht werden soll |
replacement | String | den zu ersetzenden Text |
Rückflug
Element
– das aktuelle Element
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Attributes(startOffset, endOffsetInclusive, attributes)
Wendet die angegebenen Attribute auf den angegebenen Zeichenbereich an.
Der angegebene Attributparameter muss ein Objekt sein, bei dem jeder Attributname ein Element in der Aufzählung Document
ist und jeder Attributwert der neue Wert ist, der angewendet werden soll.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Declares style attributes for font size and font family. const style = {}; style[DocumentApp.Attribute.FONT_SIZE] = 20; style[DocumentApp.Attribute.FONT_FAMILY] = 'Impact'; // Sets the style attributes to the first 9 characters in the tab's body. const text = body.setAttributes(0, 8, style);
Parameter
Name | Typ | Beschreibung |
---|---|---|
start | Integer | Der Startabstand des Textbereichs. |
end | Integer | Der Endversatz des Textbereichs. |
attributes | Object | Die Attribute des Elements. |
Rückflug
Text
: Das aktuelle Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Attributes(attributes)
Hiermit werden die Attribute des Elements festgelegt.
Der angegebene Attributparameter muss ein Objekt sein, bei dem jeder Attributname ein Element in der Aufzählung Document
ist und jeder Attributwert der neue Wert ist, der angewendet werden soll.
const doc = DocumentApp.getActiveDocument(); const documentTab = doc.getActiveTab().asDocumentTab(); const body = documentTab.getBody(); // Define a custom paragraph style. const style = {}; style[DocumentApp.Attribute.HORIZONTAL_ALIGNMENT] = DocumentApp.HorizontalAlignment.RIGHT; style[DocumentApp.Attribute.FONT_FAMILY] = 'Calibri'; style[DocumentApp.Attribute.FONT_SIZE] = 18; style[DocumentApp.Attribute.BOLD] = true; // Append a plain paragraph. const par = body.appendParagraph('A paragraph with custom style.'); // Apply the custom style. par.setAttributes(style);
Parameter
Name | Typ | Beschreibung |
---|---|---|
attributes | Object | Die Attribute des Elements. |
Rückflug
Text
: Das aktuelle Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Background Color(startOffset, endOffsetInclusive, color)
Legt die Hintergrundfarbe für den angegebenen Zeichenbereich fest.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Sets the background color of the first 3 characters in the // tab body to hex color #0000FF. const text = body.editAsText().setBackgroundColor(0, 2, '#0000FF');
Parameter
Name | Typ | Beschreibung |
---|---|---|
start | Integer | Der Startabstand des Textbereichs. |
end | Integer | Der Endversatz des Textbereichs. |
color | String | Die Hintergrundfarbe, formatiert in CSS-Notation (z. B. '#ffffff' ). |
Rückflug
Text
: Das aktuelle Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Background Color(color)
Hier legen Sie die Hintergrundfarbe fest.
Parameter
Name | Typ | Beschreibung |
---|---|---|
color | String | die Hintergrundfarbe, formatiert in CSS-Notation (z. B. '#ffffff' ) |
Rückflug
Text
– das aktuelle Element
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Bold(bold)
Hier legen Sie die Fettdruckeinstellung fest.
Parameter
Name | Typ | Beschreibung |
---|---|---|
bold | Boolean | die Fettschrifteinstellung |
Rückflug
Text
– das aktuelle Element
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Bold(startOffset, endOffsetInclusive, bold)
Legt die Fettdruckeinstellung für den angegebenen Zeichenbereich fest.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Sets the first 11 characters in the tab's body to bold. const text = body.editAsText().setBold(0, 10, true);
Parameter
Name | Typ | Beschreibung |
---|---|---|
start | Integer | Der Startabstand des Textbereichs. |
end | Integer | Der Endversatz des Textbereichs. |
bold | Boolean | Die Fettdruckeinstellung. |
Rückflug
Text
: Das aktuelle Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Font Family(startOffset, endOffsetInclusive, fontFamilyName)
Hiermit wird die Schriftfamilie für den angegebenen Zeichenbereich festgelegt. Der Name kann eine beliebige Schriftart aus dem Menü „Schriftart“ in Google Docs oder Google Fonts sein. Dabei wird die Groß- und Kleinschreibung beachtet.
Nicht erkannte Schriftarten werden als Arial dargestellt. Bei den Methoden get
und set
werden jetzt Stringnamen für Schriftarten anstelle des
-Eintrags verwendet. Dieses Enum ist zwar veraltet, bleibt aber zur Abwärtskompatibilität mit älteren Scripts verfügbar.
Font
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Sets the font of the first 4 characters in the tab's body to Roboto. const text = body.editAsText().setFontFamily(0, 3, 'Roboto');
Parameter
Name | Typ | Beschreibung |
---|---|---|
start | Integer | Der Startabstand des Textbereichs. |
end | Integer | Der Endversatz des Textbereichs. |
font | String | Der Name der Schriftfamilie aus dem Menü „Schriftart“ in Google Docs oder Google Fonts. |
Rückflug
Text
: Das aktuelle Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Font Family(fontFamilyName)
Hiermit wird die Schriftfamilie festgelegt. Der Name kann eine beliebige Schriftart aus dem Menü „Schriftart“ in Google Docs oder Google Fonts sein. Dabei wird zwischen Groß- und Kleinschreibung unterschieden. Nicht erkannte Schriftarten werden als Arial dargestellt. Bei den Methoden get
und set
werden jetzt Stringnamen für Schriftarten anstelle des
-Eintrags verwendet. Dieses Enum ist zwar veraltet, bleibt aber zur Abwärtskompatibilität mit älteren Scripts verfügbar.Font
Parameter
Name | Typ | Beschreibung |
---|---|---|
font | String | den Namen der Schriftfamilie aus dem Menü „Schriftart“ in Google Docs oder Google Fonts |
Rückflug
Text
– das aktuelle Element
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Font Size(startOffset, endOffsetInclusive, size)
Legt die Schriftgröße für den angegebenen Zeichenbereich fest.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Sets the size of the first 11 characters in the tab's body to 12. const text = body.editAsText().setFontSize(0, 10, 12);
Parameter
Name | Typ | Beschreibung |
---|---|---|
start | Integer | Der Startabstand des Textbereichs. |
end | Integer | Der Endversatz des Textbereichs. |
size | Number | Die Schriftgröße. |
Rückflug
Text
: Das aktuelle Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Font Size(size)
Hiermit wird die Schriftgröße festgelegt.
Parameter
Name | Typ | Beschreibung |
---|---|---|
size | Number | die Schriftgröße |
Rückflug
Text
– das aktuelle Element
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Foreground Color(startOffset, endOffsetInclusive, color)
Legt die Vordergrundfarbe für den angegebenen Zeichenbereich fest.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Sets the foreground color of the first 2 characters in the // tab's body to hex color #FF0000. const text = body.editAsText().setForegroundColor(0, 1, '#FF0000'); // Gets the foreground color for the second character in the tab's body. const foregroundColor = text.getForegroundColor(1); // Logs the foreground color to the console. console.log(foregroundColor);
Parameter
Name | Typ | Beschreibung |
---|---|---|
start | Integer | Der Startabstand des Textbereichs. |
end | Integer | Der Endversatz des Textbereichs. |
color | String | Die Vordergrundfarbe, formatiert in CSS-Notation (z. B. '#ffffff' ). |
Rückflug
Text
: Das aktuelle Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Foreground Color(color)
Hiermit wird die Vordergrundfarbe festgelegt.
Parameter
Name | Typ | Beschreibung |
---|---|---|
color | String | die Vordergrundfarbe, formatiert in CSS-Notation (z. B. '#ffffff' ) |
Rückflug
Text
– das aktuelle Element
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Italic(italic)
Hier legen Sie die Einstellung für Kursivschrift fest.
Parameter
Name | Typ | Beschreibung |
---|---|---|
italic | Boolean | die Kursiveinstellung |
Rückflug
Text
– das aktuelle Element
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Italic(startOffset, endOffsetInclusive, italic)
Legt die Einstellung für Kursivschrift für den angegebenen Zeichenbereich fest.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Sets the first 11 characters in the tab's body to italic. const text = body.editAsText().setItalic(0, 10, true);
Parameter
Name | Typ | Beschreibung |
---|---|---|
start | Integer | Der Startabstand des Textbereichs. |
end | Integer | Der Endversatz des Textbereichs. |
italic | Boolean | Die Einstellung „Kursiv“. |
Rückflug
Text
: Das aktuelle Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Link Url(startOffset, endOffsetInclusive, url)
Legt die Link-URL für den angegebenen Zeichenbereich fest.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Applies a link to the first 11 characters in the body. const text = body.editAsText().setLinkUrl(0, 10, 'https://example.com');
Parameter
Name | Typ | Beschreibung |
---|---|---|
start | Integer | Der Startabstand des Textbereichs. |
end | Integer | Der Endversatz des Textbereichs. |
url | String | Die Link-URL |
Rückflug
Text
: Das aktuelle Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Link Url(url)
Legt die Link-URL fest.
Parameter
Name | Typ | Beschreibung |
---|---|---|
url | String | die Link-URL |
Rückflug
Text
– das aktuelle Element
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Strikethrough(strikethrough)
Legt die Durchgestrichen-Einstellung fest.
Parameter
Name | Typ | Beschreibung |
---|---|---|
strikethrough | Boolean | die Durchgestrichen-Einstellung |
Rückflug
Text
– das aktuelle Element
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Strikethrough(startOffset, endOffsetInclusive, strikethrough)
Legt die Durchstreichung für den angegebenen Zeichenbereich fest.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Sets the first 11 characters in the tab's body to strikethrough. const text = body.editAsText().setStrikethrough(0, 10, true);
Parameter
Name | Typ | Beschreibung |
---|---|---|
start | Integer | Der Startabstand des Textbereichs. |
end | Integer | Der Endversatz des Textbereichs. |
strikethrough | Boolean | Die Einstellung „Durchgestrichen“. |
Rückflug
Text
: Das aktuelle Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Text(text)
Legt den Textinhalt fest.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Replaces the contents of the body with the text, 'New body text.' const text = body.editAsText().setText('New body text.');
Parameter
Name | Typ | Beschreibung |
---|---|---|
text | String | Der neue Textinhalt. |
Rückflug
Text
: Das aktuelle Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Text Alignment(startOffset, endOffsetInclusive, textAlignment)
Hiermit wird die Textausrichtung für einen bestimmten Zeichenbereich festgelegt. Verfügbare Ausrichtungstypen sind Document
, Document
und Document
.
// Make the first character in the first paragraph of the active tab be // superscript. const documentTab = DocumentApp.getActiveDocument().getActiveTab().asDocumentTab(); const text = documentTab.getBody().getParagraphs()[0].editAsText(); text.setTextAlignment(0, 0, DocumentApp.TextAlignment.SUPERSCRIPT);
Parameter
Name | Typ | Beschreibung |
---|---|---|
start | Integer | Der Startabweichung des Zeichenbereichs. |
end | Integer | Der Endversatz des Zeichenbereichs (einschließlich). |
text | Text | Die Art der Textausrichtung, die angewendet werden soll. |
Rückflug
Text
: Das aktuelle Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Text Alignment(textAlignment)
Hiermit wird die Textausrichtung festgelegt. Verfügbare Ausrichtungstypen sind Document
, Document
und Document
.
// Make the entire first paragraph in the active tab be superscript. const documentTab = DocumentApp.getActiveDocument().getActiveTab().asDocumentTab(); const text = documentTab.getBody().getParagraphs()[0].editAsText(); text.setTextAlignment(DocumentApp.TextAlignment.SUPERSCRIPT);
Parameter
Name | Typ | Beschreibung |
---|---|---|
text | Text | die Art der Textausrichtung |
Rückflug
Text
– das aktuelle Element
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Underline(underline)
Legt die Unterstreichungseinstellung fest.
Parameter
Name | Typ | Beschreibung |
---|---|---|
underline | Boolean | die Unterstricheinstellung |
Rückflug
Text
– das aktuelle Element
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents
set Underline(startOffset, endOffsetInclusive, underline)
Legt die Unterstreichungseinstellung für den angegebenen Zeichenbereich fest.
// Opens the Docs file by its URL. If you created your script from within a // Google Docs file, you can use DocumentApp.getActiveDocument() instead. // TODO(developer): Replace the URL with your own. const doc = DocumentApp.openByUrl( 'https://docs.google.com/document/d/DOCUMENT_ID/edit', ); // Gets the body contents of the tab by its ID. // TODO(developer): Replace the ID with your own. const body = doc.getTab('123abc').asDocumentTab().getBody(); // Sets the first 11 characters in the tab's body to underline. const text = body.editAsText().setUnderline(0, 10, true);
Parameter
Name | Typ | Beschreibung |
---|---|---|
start | Integer | Der Startabstand des Textbereichs. |
end | Integer | Der Endversatz des Textbereichs. |
underline | Boolean | Die Unterstricheinstellung. |
Rückflug
Text
: Das aktuelle Element.
Autorisierung
Scripts, die diese Methode verwenden, erfordern eine Autorisierung für einen oder mehrere der folgenden Bereiche:
-
https://www.googleapis.com/auth/documents.currentonly
-
https://www.googleapis.com/auth/documents