Enum CopyPasteType
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
কপি পেস্ট টাইপ সম্ভাব্য বিশেষ পেস্ট ধরনের একটি গণনা.
একটি enum কল করার জন্য, আপনি তার পিতামাতার শ্রেণী, নাম এবং সম্পত্তি কল করুন। উদাহরণস্বরূপ, SpreadsheetApp.CopyPasteType.PASTE_NORMAL
।
বৈশিষ্ট্য
সম্পত্তি | টাইপ | বর্ণনা |
---|
PASTE_NORMAL | Enum | মান, সূত্র, বিন্যাস এবং মার্জ পেস্ট করুন। |
PASTE_NO_BORDERS | Enum | মান, সূত্র, বিন্যাস এবং মার্জ পেস্ট করুন কিন্তু সীমানা ছাড়াই। |
PASTE_FORMAT | Enum | শুধুমাত্র বিন্যাস আটকান. |
PASTE_FORMULA | Enum | শুধুমাত্র সূত্র পেস্ট করুন. |
PASTE_DATA_VALIDATION | Enum | শুধুমাত্র ডেটা যাচাইকরণ পেস্ট করুন। |
PASTE_VALUES | Enum | বিন্যাস, সূত্র বা মার্জ ছাড়াই শুধুমাত্র মানগুলি আটকান৷ |
PASTE_CONDITIONAL_FORMATTING | Enum | শুধুমাত্র রঙের নিয়ম পেস্ট করুন। |
PASTE_COLUMN_WIDTHS | Enum | শুধুমাত্র কলামের প্রস্থ পেস্ট করুন। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট 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\u003eCopyPasteType\u003c/code\u003e is used to specify the content pasted from the clipboard in Google Apps Script.\u003c/p\u003e\n"],["\u003cp\u003eIt's an enumeration within the \u003ccode\u003eSpreadsheetApp\u003c/code\u003e class, called using \u003ccode\u003eSpreadsheetApp.CopyPasteType.PROPERTY\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eOptions include pasting values, formulas, formats, validations, or combinations thereof, as well as only pasting column widths or conditional formatting.\u003c/p\u003e\n"]]],[],null,["# Enum CopyPasteType\n\nCopyPasteType\n\nAn enumeration of possible special paste types.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nSpreadsheetApp.CopyPasteType.PASTE_NORMAL`. \n\n### Properties\n\n| Property | Type | Description |\n|--------------------------------|--------|-----------------------------------------------------------------|\n| `PASTE_NORMAL` | `Enum` | Paste values, formulas, formats and merges. |\n| `PASTE_NO_BORDERS` | `Enum` | Paste values, formulas, formats and merges but without borders. |\n| `PASTE_FORMAT` | `Enum` | Paste the format only. |\n| `PASTE_FORMULA` | `Enum` | Paste the formulas only. |\n| `PASTE_DATA_VALIDATION` | `Enum` | Paste the data validation only. |\n| `PASTE_VALUES` | `Enum` | Paste the values ONLY without formats, formulas or merges. |\n| `PASTE_CONDITIONAL_FORMATTING` | `Enum` | Paste the color rules only. |\n| `PASTE_COLUMN_WIDTHS` | `Enum` | Paste the column widths only. |"]]