Class RgbColor
קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
Rgbצבע
צבע שמוגדר באמצעות ערוצי צבע אדום, ירוק וכחול.
Methods
שיטה | סוג הערך המוחזר | תיאור קצר |
asHexString() | String | הפונקציה מחזירה את הצבע כמחרוזת הקסדצימלית בת 7 תווים בסגנון CSS (#rrggbb) או כמחרוזת הקסדצימלית בת 9 תווים (#aarrggbb). |
getBlue() | Integer | הערוץ הכחול של הצבע הזה, כמספר מ-0 עד 255. |
getColorType() | ColorType | אחזור הסוג של הצבע הזה. |
getGreen() | Integer | ערוץ הירוק של הצבע הזה, כמספר מ-0 עד 255. |
getRed() | Integer | ערוץ האדום של הצבע הזה, כמספר מ-0 עד 255. |
מסמכים מפורטים
asHexString()
הפונקציה מחזירה את הצבע כמחרוזת הקסדצימלית בת 7 תווים בסגנון CSS (#rrggbb) או כמחרוזת הקסדצימלית בת 9 תווים (#aarrggbb).
חזרה
String
— הייצוג הקסדצימלי של הצבע.
getBlue()
הערוץ הכחול של הצבע הזה, כמספר מ-0 עד 255.
חזרה
Integer
— הערך של הערוץ הכחול.
getColorType()
אחזור הסוג של הצבע הזה.
חזרה
ColorType
— סוג הצבע.
getGreen()
ערוץ הירוק של הצבע הזה, כמספר מ-0 עד 255.
חזרה
Integer
— הערך של ערוץ הירוק.
getRed()
ערוץ האדום של הצבע הזה, כמספר מ-0 עד 255.
חזרה
Integer
— הערך של ערוץ האדום.
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 4.0 ודוגמאות הקוד הן ברישיון Apache 2.0. לפרטים, ניתן לעיין במדיניות האתר Google Developers. Java הוא סימן מסחרי רשום של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2025-07-26 (שעון UTC).
[null,null,["עדכון אחרון: 2025-07-26 (שעון UTC)."],[[["\u003cp\u003e\u003ccode\u003eRgbColor\u003c/code\u003e defines a color using red, green, and blue color channels.\u003c/p\u003e\n"],["\u003cp\u003eYou can get the individual red, green, and blue color channel values as integers ranging from 0 to 255.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003easHexString()\u003c/code\u003e method provides the color's hexadecimal representation, suitable for CSS use.\u003c/p\u003e\n"],["\u003cp\u003eIt is possible to determine the color type using the \u003ccode\u003egetColorType()\u003c/code\u003e method.\u003c/p\u003e\n"]]],[],null,["# Class RgbColor\n\nRgbColor\n\nA color defined by red, green, blue color channels. \n\n### Methods\n\n| Method | Return type | Brief description |\n|-----------------------------------|-----------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------|\n| [asHexString()](#asHexString()) | `String` | Returns the color as a CSS-style 7 character hexadecimal string (#rrggbb) or 9 character hexadecimal string (#aarrggbb). |\n| [getBlue()](#getBlue()) | `Integer` | The blue channel of this color, as a number from 0 to 255. |\n| [getColorType()](#getColorType()) | [ColorType](/apps-script/reference/base/color-type) | Get the type of this color. |\n| [getGreen()](#getGreen()) | `Integer` | The green channel of this color, as a number from 0 to 255. |\n| [getRed()](#getRed()) | `Integer` | The red channel of this color, as a number from 0 to 255. |\n\nDetailed documentation\n----------------------\n\n### `as``Hex``String()`\n\nReturns the color as a CSS-style 7 character hexadecimal string (#rrggbb) or 9 character\nhexadecimal string (#aarrggbb).\n\n#### Return\n\n\n`String` --- The hex representation of color.\n\n*** ** * ** ***\n\n### `get``Blue()`\n\nThe blue channel of this color, as a number from 0 to 255.\n\n#### Return\n\n\n`Integer` --- The value of blue channel.\n\n*** ** * ** ***\n\n### `get``Color``Type()`\n\nGet the type of this color.\n\n#### Return\n\n\n[ColorType](/apps-script/reference/base/color-type) --- The color type.\n\n*** ** * ** ***\n\n### `get``Green()`\n\nThe green channel of this color, as a number from 0 to 255.\n\n#### Return\n\n\n`Integer` --- The value of green channel.\n\n*** ** * ** ***\n\n### `get``Red()`\n\nThe red channel of this color, as a number from 0 to 255.\n\n#### Return\n\n\n`Integer` --- The value of red channel."]]