Enum EventColor
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
ইভেন্টের রঙ ক্যালেন্ডার পরিষেবায় উপলভ্য নামযুক্ত ইভেন্ট রঙের প্রতিনিধিত্বকারী একটি enum৷
একটি enum কল করার জন্য, আপনি তার পিতামাতার শ্রেণী, নাম এবং সম্পত্তি কল করুন। উদাহরণস্বরূপ, CalendarApp.EventColor.PALE_BLUE
।
বৈশিষ্ট্য
সম্পত্তি | টাইপ | বর্ণনা |
---|
PALE_BLUE | Enum | ফ্যাকাশে নীল ( "1" ), তম ক্যালেন্ডার UI এ "ময়ূর" হিসাবে উল্লেখ করা হয়েছে। |
PALE_GREEN | Enum | ফ্যাকাশে সবুজ ( "2" ), তম ক্যালেন্ডার UI এ "সেজ" হিসাবে উল্লেখ করা হয়েছে। |
MAUVE | Enum | Mauve ( "3" ), তম ক্যালেন্ডার UI এ "আঙ্গুর" হিসাবে উল্লেখ করা হয়েছে। |
PALE_RED | Enum | ফ্যাকাশে লাল ( "4" ), তম ক্যালেন্ডার UI-তে "ফ্ল্যামিঙ্গো" হিসাবে উল্লেখ করা হয়েছে। |
YELLOW | Enum | হলুদ ( "5" ), তম ক্যালেন্ডার UI এ "কলা" হিসাবে উল্লেখ করা হয়েছে। |
ORANGE | Enum | কমলা ( "6" ), তম ক্যালেন্ডার UI-তে "Tangerine" হিসাবে উল্লেখ করা হয়েছে। |
CYAN | Enum | সায়ান ( "7" ), তম ক্যালেন্ডার UI এ "ল্যাভেন্ডার" হিসাবে উল্লেখ করা হয়েছে। |
GRAY | Enum | ধূসর ( "8" ), তম ক্যালেন্ডার UI-তে "গ্রাফাইট" হিসাবে উল্লেখ করা হয়েছে। |
BLUE | Enum | নীল ( "9" ), তম ক্যালেন্ডার UI এ "ব্লুবেরি" হিসাবে উল্লেখ করা হয়েছে। |
GREEN | Enum | সবুজ ( "10" ), তম ক্যালেন্ডার UI এ "বেসিল" হিসাবে উল্লেখ করা হয়েছে। |
RED | Enum | লাল ( "11" ), তম ক্যালেন্ডার UI-তে "টমেটো" হিসাবে উল্লেখ করা হয়েছে। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-25 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-25 UTC-তে শেষবার আপডেট করা হয়েছে।"],[[["\u003cp\u003e\u003ccode\u003eEventColor\u003c/code\u003e is an enum used in Google Apps Script to represent the colors available for calendar events.\u003c/p\u003e\n"],["\u003cp\u003eYou can access these colors by calling \u003ccode\u003eCalendarApp.EventColor\u003c/code\u003e followed by the specific color property, like \u003ccode\u003eCalendarApp.EventColor.PALE_BLUE\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eEach \u003ccode\u003eEventColor\u003c/code\u003e property corresponds to a specific color with both a numerical value and a user-friendly name displayed in the Calendar UI.\u003c/p\u003e\n"]]],[],null,["# Enum EventColor\n\nEventColor\n\nAn enum representing the named event colors available in the Calendar service.\n\nTo call an enum, you call its parent class, name, and property. For example, `\nCalendarApp.EventColor.PALE_BLUE`. \n\n### Properties\n\n| Property | Type | Description |\n|--------------|--------|----------------------------------------------------------------|\n| `PALE_BLUE` | `Enum` | Pale Blue (`\"1\"`), referred to as \"Peacock\" in th Calendar UI. |\n| `PALE_GREEN` | `Enum` | Pale Green (`\"2\"`), referred to as \"Sage\" in th Calendar UI. |\n| `MAUVE` | `Enum` | Mauve (`\"3\"`),, referred to as \"Grape\" in th Calendar UI. |\n| `PALE_RED` | `Enum` | Pale Red (`\"4\"`), referred to as \"Flamingo\" in th Calendar UI. |\n| `YELLOW` | `Enum` | Yellow (`\"5\"`), referred to as \"Banana\" in th Calendar UI. |\n| `ORANGE` | `Enum` | Orange (`\"6\"`), referred to as \"Tangerine\" in th Calendar UI. |\n| `CYAN` | `Enum` | Cyan (`\"7\"`), referred to as \"Lavender\" in th Calendar UI. |\n| `GRAY` | `Enum` | Gray (`\"8\"`), referred to as \"Graphite\" in th Calendar UI. |\n| `BLUE` | `Enum` | Blue (`\"9\"`), referred to as \"Blueberry\" in th Calendar UI. |\n| `GREEN` | `Enum` | Green (`\"10\"`), referred to as \"Basil\" in th Calendar UI. |\n| `RED` | `Enum` | Red (`\"11\"`), referred to as \"Tomato\" in th Calendar UI. |"]]