Wenn die ersten beiden Zellen zu der folgenden Tabelle zusammengeführt werden, ist Zelle (0,0) die Kopfzelle und Zelle (0,1) eine zusammengeführte Zelle.
Wenn die ersten beiden Zellen zu der folgenden Tabelle zusammengeführt werden, ist Zelle (0,0) die Kopfzelle und Zelle (0,1) eine zusammengeführte Zelle.
[[["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: 2025-07-26 (UTC)."],[[["\u003cp\u003e\u003ccode\u003eCellMergeState\u003c/code\u003e defines the merge state of a table cell in Google Slides.\u003c/p\u003e\n"],["\u003cp\u003eThere are three possible states: \u003ccode\u003eNORMAL\u003c/code\u003e for unmerged cells, \u003ccode\u003eHEAD\u003c/code\u003e for the top-left cell of a merged range, and \u003ccode\u003eMERGED\u003c/code\u003e for other cells within a merged range.\u003c/p\u003e\n"],["\u003cp\u003eTo reference a specific state, use the syntax \u003ccode\u003eSlidesApp.CellMergeState.STATE_NAME\u003c/code\u003e, replacing \u003ccode\u003eSTATE_NAME\u003c/code\u003e with the desired state (e.g., \u003ccode\u003eSlidesApp.CellMergeState.NORMAL\u003c/code\u003e).\u003c/p\u003e\n"]]],[],null,["CellMergeState\n\nThe table cell merge states.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nSlidesApp.CellMergeState.NORMAL`. \n\nProperties\n\n| Property | Type | Description |\n|----------|--------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `NORMAL` | `Enum` | The cell is not merged. |\n| `HEAD` | `Enum` | The cell is merged and it is the head (i.e. upper left) cell within the merged set of cells. As an example, assume the following table. ```text ------------------- |(0,0)|(0,1)|(0,2)| ------------------- ``` If the first two cells are merged to form the following table, cell (0,0) is the head cell and (0,1) is a merged cell. ```text ------------------- |(0,0) |(0,2)| ------------------- ``` |\n| `MERGED` | `Enum` | The cell is merged but is not the head (i.e. upper left) cell. As an example, assume the following table. ```text ------------------- |(0,0)|(0,1)|(0,2)| ------------------- ``` If the first two cells are merged to form the following table, cell (0,0) is the head cell and (0,1) is a merged cell. ```text ------------------- |(0,0) |(0,2)| ------------------- ``` |"]]