Enum CellMergeState
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
সেল মার্জ স্টেট টেবিল সেল একত্রীকরণ রাষ্ট্র.
একটি enum কল করার জন্য, আপনি তার পিতামাতার শ্রেণী, নাম এবং সম্পত্তি কল করুন। উদাহরণস্বরূপ, 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 সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-24 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)| ------------------- ``` |"]]