Enum CellMergeState
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
सेलमर्ज करेंस्टेटस
टेबल सेल के मर्ज होने की स्थितियां.
किसी एनम को कॉल करने के लिए, उसकी पैरंट क्लास, नाम, और प्रॉपर्टी को कॉल किया जाता है. उदाहरण के लिए,
SlidesApp.CellMergeState.NORMAL
.
प्रॉपर्टी
प्रॉपर्टी | टाइप | ब्यौरा |
NORMAL | Enum | सेल मर्ज नहीं की गई है. |
HEAD | Enum | सेल मर्ज हो गई है और यह मर्ज की गई सेल के सेट में हेड (यानी ऊपर बाईं ओर) सेल है.
उदाहरण के लिए, नीचे दी गई टेबल देखें.
-------------------
|(0,0)|(0,1)|(0,2)|
-------------------
अगर पहली दो सेल को मर्ज करके नीचे दी गई टेबल बनाई जाती है, तो सेल (0,0) हेडर सेल होती है और (0,1) मर्ज की गई सेल होती है.
-------------------
|(0,0) |(0,2)|
-------------------
|
MERGED | Enum | सेल मर्ज की गई है, लेकिन यह हेड (यानी ऊपर बाईं ओर) सेल नहीं है.
उदाहरण के लिए, नीचे दी गई टेबल देखें.
-------------------
|(0,0)|(0,1)|(0,2)|
-------------------
अगर नीचे दी गई टेबल बनाने के लिए, पहली दो सेल को मर्ज किया जाता है, तो सेल (0,0) हेडर सेल होती है और (0,1) मर्ज की गई सेल होती है.
-------------------
|(0,0) |(0,2)|
-------------------
|
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 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,["# Enum CellMergeState\n\nCellMergeState\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\n### Properties\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)| ------------------- ``` |"]]