![]() |
ActionComponents
04.05.00
Customizable UI and time-saving tools for Android development with Xamarin and Visual Studio.
|
A cross-platform tool for working with colors in the iOS and Android Mobile Operating systems. ACColor
represents a union of nearly all of the options and features of both UIColor
from iOS and the Color
object from Android so the property or method used on one platform can be used on another without change in syntax. Several new features are supported such creating a color from or returning a color as a CSS/Web Hex String in the form #RRGGBB or #AARRGGBB. ACColor
is fully compatible with UIColor
and Color
so it can be used anywhere those objects would be used and can be cast to and from those types implicitly.
More...
Public Member Functions | |
ACColor () | |
Initializes a new instance of the ACColor class with the color value set to pure white. More... | |
ACColor (string hexValue) | |
Initializes a new instance of the ACColor class. More... | |
ACColor (byte red, byte green, byte blue) | |
Initializes a new instance of the ACColor class. More... | |
ACColor (int red, int green, int blue) | |
Initializes a new instance of the ACColor class. More... | |
ACColor (byte alpha, byte red, byte green, byte blue) | |
Initializes a new instance of the ACColor class. More... | |
ACColor (int alpha, int red, int green, int blue) | |
Initializes a new instance of the ACColor class. More... | |
ACColor (float red, float green, float blue, float alpha) | |
Initializes a new instance of the ACColor class. More... | |
Color | ToColor () |
Converts the ACColor to a default Android color and returns it More... | |
float | GetBrightness () |
Gets the brightness. More... | |
float | GetHue () |
Gets the hue. More... | |
float | GetSaturation () |
Gets the saturation. More... | |
int | ToArgb () |
Tos the ARGB. More... | |
string | ToHexString (bool withAlpha) |
Converts this ACColor to a CSS/Web style hex color specification in the form #RRGGBB or ##AARRGGBB More... | |
ACColor | ColorWithAlpha (float alpha) |
Creates a new color with the specified alpha channel from a reference color. More... | |
void | GetHSBA (ref float hue, ref float saturation, ref float brightness, ref float alpha) |
Returns the hue, saturation, brightness and alpha components of the color. More... | |
void | GetRGBA (ref float red, ref float green, ref float blue, ref float alpha) |
Returns the red, green, blue and alpha components of this color. More... | |
void | SetFill () |
Sets the fill color in the current paint for the current canvas specified by the global UIGraphics class. More... | |
void | SetStroke () |
Sets the stroke color in the current paint for the current canvas specified by the global UIGraphics class. More... | |
Static Public Member Functions | |
static ACColor | Argb (int alpha, int red, int green, int blue) |
Return a color from alpha, red, green, blue components. These component values should be [0..255]. More... | |
static int | GetAlphaComponent (int color) |
Gets the Alpha component from an integer color. More... | |
static int | GetBlueComponent (int color) |
Gets the Blue component from an integer color. More... | |
static int | GetGreenComponent (int color) |
Gets the green component from an integer color More... | |
static int | GetRedComponent (int color) |
Gets the red component from an integer color More... | |
static ACColor | Rgb (int red, int green, int blue) |
Return a color from red, green, blue components. These component values should be [0..255]. More... | |
static ACColor | GrayScale (int value) |
Returns a gray color for the value given where 255 equals Pure White and 0 equals Pure Black More... | |
static ACColor | FromHexString (string hexValue) |
Converts a CSS/Web Color string specification in the form #RGB, #RRGGBB or #AARRGGBB to a ACColor More... | |
static ACColor | FromRGB (byte red, byte green, byte blue) |
Creates a new color from the given red, green and blue values More... | |
static ACColor | FromRGB (int red, int green, int blue) |
Creates a new color from the given red, green and blue values More... | |
static ACColor | FromRGB (float red, float green, float blue) |
Creates a new color from the given red, green and blue values More... | |
static ACColor | FromRGBA (byte red, byte green, byte blue, byte alpha) |
Creates a new color from the given red, green and blue values with the given alpha value More... | |
static ACColor | FromRGBA (int red, int green, int blue, int alpha) |
Creates a new color from the given red, green and blue values with the given alpha value More... | |
static ACColor | FromRGBA (float red, float green, float blue, float alpha) |
Creates a new color from the given red, green and blue values with the given alpha value More... | |
static ACColor | FromHSB (float hue, float saturation, float brightness) |
Creates a color from using the hue, saturation and brightness components. More... | |
static ACColor | FromHSBA (float hue, float saturation, float brightness, float alpha) |
Creates a color from using the hue, saturation and brightness components with the given alpha value More... | |
static ACColor | FromWhiteAlpha (float grayscale, float alpha) |
Creates a grayscale color, based on the current colorspace. More... | |
static implicit | operator Color (ACColor color) |
Converts a ACColor to an Android Color More... | |
static implicit | operator ACColor (Color color) |
Converts an Android Color to a ACColor More... | |
Properties | |
static ACColor | ActionOrange [get] |
Gets the orange. More... | |
static ACColor | ActionYellowOrange [get] |
Gets the yellow orange. More... | |
static ACColor | ActionYellow [get] |
Gets the yellow. More... | |
static ACColor | ActionYellowGreen [get] |
Gets the yellow green. More... | |
static ACColor | ActionGreenTea [get] |
Gets the green tea. More... | |
static ACColor | ActionTeal [get] |
Gets the teal. More... | |
static ACColor | ActionCyan [get] |
Gets the cyan. More... | |
static ACColor | ActionNavyBlue [get] |
Gets the navy blue. More... | |
static ACColor | ActionSkyBlue [get] |
Gets the sky blue. More... | |
static ACColor | ActionGrape [get] |
Gets the grape. More... | |
static ACColor | ActionLavendar [get] |
Gets the lavendar. More... | |
static ACColor | ActionDustyRose [get] |
Gets the dusty rose. More... | |
static ACColor | ActionPink [get] |
Gets the pink. More... | |
static ACColor | ActionBrickRed [get] |
Gets the brick red. More... | |
static ACColor | ActionPinkGrapefruit [get] |
Gets the pink grapefruit. More... | |
static ACColor | ActionRedOrange [get] |
Gets the red orange. More... | |
static ACColor | ActionBrightOrange [get] |
Gets the Appracatappra ActionPack Component Suite branded Orange color. More... | |
static ACColor | Black [get] |
Gets the black color More... | |
static ACColor | Blue [get] |
Gets the blue. More... | |
static ACColor | Brown [get] |
Gets the brown. More... | |
static ACColor | Clear [get] |
Gets the clear. More... | |
static ACColor | Cyan [get] |
Gets the cyan. More... | |
static ACColor | DarkGray [get] |
Gets the dark gray. More... | |
static ACColor | DarkTextColor [get] |
Gets the color of the dark text. More... | |
static ACColor | Gray [get] |
Gets the gray. More... | |
static ACColor | Green [get] |
Gets the green. More... | |
static ACColor | GroupTableViewBackgroundColor [get] |
Gets the color of the group table view background. More... | |
static ACColor | LightGray [get] |
Gets the light gray. More... | |
static ACColor | LightTextColor [get] |
Gets the color of the light text. More... | |
static ACColor | Magenta [get] |
Gets the magenta. More... | |
static ACColor | Orange [get] |
Gets the orange. More... | |
static ACColor | Purple [get] |
Gets the purple. More... | |
static ACColor | Red [get] |
Gets the red. More... | |
static ACColor | ScrollViewTexturedBackgroundColor [get] |
Gets the color of the scroll view textured background. More... | |
static ACColor | UnderPageBackgroundColor [get] |
Gets the color of the under page background. More... | |
static ACColor | ViewFlipsideBackgroundColor [get] |
Gets the color of the view flipside background. More... | |
static ACColor | White [get] |
Gets the white. More... | |
static ACColor | Yellow [get] |
Gets the yellow. More... | |
static ACColor | Ivory [get] |
Gets the ivory. More... | |
static ACColor | LightYellow [get] |
Gets the light yellow. More... | |
static ACColor | Snow [get] |
Gets the snow. More... | |
static ACColor | FloralWhite [get] |
Gets the floral white. More... | |
static ACColor | LemonChiffon [get] |
Gets the lemon chiffon. More... | |
static ACColor | Cornsilk [get] |
Gets the cornsilk. More... | |
static ACColor | Seashell [get] |
Gets the seashell. More... | |
static ACColor | LavenderBlush [get] |
Gets the lavender blush. More... | |
static ACColor | PapayaWhip [get] |
Gets the papaya whip. More... | |
static ACColor | BlanchedAlmond [get] |
Gets the blanched almond. More... | |
static ACColor | MistyRose [get] |
Gets the misty rose. More... | |
static ACColor | Bisque [get] |
Gets the bisque. More... | |
static ACColor | Moccasin [get] |
Gets the moccasin. More... | |
static ACColor | NavajoWhite [get] |
Gets the navajo white. More... | |
static ACColor | PeachPuff [get] |
Gets the peach puff. More... | |
static ACColor | Gold [get] |
Gets the gold. More... | |
static ACColor | Pink [get] |
Gets the pink. More... | |
static ACColor | LightPink [get] |
Gets the light pink. More... | |
static ACColor | LightSalmon [get] |
Gets the light salmon. More... | |
static ACColor | DarkOrange [get] |
Gets the dark orange. More... | |
static ACColor | Coral [get] |
Gets the coral. More... | |
static ACColor | HotPink [get] |
Gets the hot pink. More... | |
static ACColor | Tomato [get] |
Gets the tomato. More... | |
static ACColor | OrangeRed [get] |
Gets the orange red. More... | |
static ACColor | DeepPink [get] |
Gets the deep pink. More... | |
static ACColor | Fuchsia [get] |
Gets the fuchsia. More... | |
static ACColor | OldLace [get] |
Gets the old lace. More... | |
static ACColor | LightGoldenrodYellow [get] |
Gets the light goldenrod yellow. More... | |
static ACColor | Linen [get] |
Gets the linen. More... | |
static ACColor | AntiqueWhite [get] |
Gets the antique white. More... | |
static ACColor | Salmon [get] |
Gets the salmon. More... | |
static ACColor | GhostWhite [get] |
Gets the ghost white. More... | |
static ACColor | MintCream [get] |
Gets the mint cream. More... | |
static ACColor | WhiteSmoke [get] |
Gets the white smoke. More... | |
static ACColor | Beige [get] |
Gets the beige. More... | |
static ACColor | Wheat [get] |
Gets the wheat. More... | |
static ACColor | SandyBrown [get] |
Gets the sandy brown. More... | |
static ACColor | Azure [get] |
Gets the azure. More... | |
static ACColor | Honeydew [get] |
Gets the honeydew. More... | |
static ACColor | AliceBlue [get] |
Gets the alice blue. More... | |
static ACColor | Khaki [get] |
Gets the khaki. More... | |
static ACColor | LightCoral [get] |
Gets the light coral. More... | |
static ACColor | PaleGoldenrod [get] |
Gets the pale goldenrod. More... | |
static ACColor | Violet [get] |
Gets the violet. More... | |
static ACColor | DarkSalmon [get] |
Gets the dark salmon. More... | |
static ACColor | Lavender [get] |
Gets the lavender. More... | |
static ACColor | LightCyan [get] |
Gets the light cyan. More... | |
static ACColor | BurlyWood [get] |
Gets the burly wood. More... | |
static ACColor | Plum [get] |
Gets the plum. More... | |
static ACColor | Gainsboro [get] |
Gets the gainsboro. More... | |
static ACColor | Crimson [get] |
Gets the crimson. More... | |
static ACColor | PaleVioletRed [get] |
Gets the pale violet red. More... | |
static ACColor | Goldenrod [get] |
Gets the goldenrod. More... | |
static ACColor | Orchid [get] |
Gets the orchid. More... | |
static ACColor | Thistle [get] |
Gets the thistle. More... | |
static ACColor | LightGrey [get] |
Gets the light grey. More... | |
static ACColor | Tan [get] |
Gets the tan. More... | |
static ACColor | Chocolate [get] |
Gets the chocolate. More... | |
static ACColor | Peru [get] |
Gets the peru. More... | |
static ACColor | IndianRed [get] |
Gets the indian red. More... | |
static ACColor | MediumVioletRed [get] |
Gets the medium violet red. More... | |
static ACColor | Silver [get] |
Gets the silver. More... | |
static ACColor | DarkKhaki [get] |
Gets the dark khaki. More... | |
static ACColor | RosyBrown [get] |
Gets the rosy brown. More... | |
static ACColor | MediumOrchid [get] |
Gets the medium orchid. More... | |
static ACColor | DarkGoldenrod [get] |
Gets the dark goldenrod. More... | |
static ACColor | FireBrick [get] |
Gets the fire brick. More... | |
static ACColor | PowderBlue [get] |
Gets the powder blue. More... | |
static ACColor | LightSteelBlue [get] |
Gets the light steel blue. More... | |
static ACColor | PaleTurquoise [get] |
Gets the pale turquoise. More... | |
static ACColor | GreenYellow [get] |
Gets the green yellow. More... | |
static ACColor | LightBlue [get] |
Gets the light blue. More... | |
static ACColor | Sienna [get] |
Gets the sienna. More... | |
static ACColor | YellowGreen [get] |
Gets the yellow green. More... | |
static ACColor | DarkOrchid [get] |
Gets the dark orchid. More... | |
static ACColor | PaleGreen [get] |
Gets the pale green. More... | |
static ACColor | DarkViolet [get] |
Gets the dark violet. More... | |
static ACColor | MediumPurple [get] |
Gets the medium purple. More... | |
static ACColor | LightGreen [get] |
Gets the light green. More... | |
static ACColor | DarkSeaGreen [get] |
Gets the dark sea green. More... | |
static ACColor | SaddleBrown [get] |
Gets the saddle brown. More... | |
static ACColor | DarkMagenta [get] |
Gets the dark magenta. More... | |
static ACColor | DarkRed [get] |
Gets the dark red. More... | |
static ACColor | BlueViolet [get] |
Gets the blue violet. More... | |
static ACColor | LightSkyBlue [get] |
Gets the light sky blue. More... | |
static ACColor | SkyBlue [get] |
Gets the sky blue. More... | |
static ACColor | Olive [get] |
Gets the olive. More... | |
static ACColor | Maroon [get] |
Gets the maroon. More... | |
static ACColor | Aquamarine [get] |
Gets the aquamarine. More... | |
static ACColor | Chartreuse [get] |
Gets the chartreuse. More... | |
static ACColor | LawnGreen [get] |
Gets the lawn green. More... | |
static ACColor | MediumSlateBlue [get] |
Gets the medium slate blue. More... | |
static ACColor | LightSlateGray [get] |
Gets the light slate gray. More... | |
static ACColor | SlateGray [get] |
Gets the slate gray. More... | |
static ACColor | OliveDrab [get] |
Gets the olive drab. More... | |
static ACColor | SlateBlue [get] |
Gets the slate blue. More... | |
static ACColor | DimGray [get] |
Gets the dim gray. More... | |
static ACColor | MediumAquamarine [get] |
Gets the medium aquamarine. More... | |
static ACColor | CornflowerBlue [get] |
Gets the cornflower blue. More... | |
static ACColor | CadetBlue [get] |
Gets the cadet blue. More... | |
static ACColor | DarkOliveGreen [get] |
Gets the dark olive green. More... | |
static ACColor | Indigo [get] |
Gets the indigo. More... | |
static ACColor | MediumTurquoise [get] |
Gets the medium turquoise. More... | |
static ACColor | DarkSlateBlue [get] |
Gets the dark slate blue. More... | |
static ACColor | SteelBlue [get] |
Gets the steel blue. More... | |
static ACColor | RoyalBlue [get] |
Gets the royal blue. More... | |
static ACColor | Turquoise [get] |
Gets the turquoise. More... | |
static ACColor | MediumSeaGreen [get] |
Gets the medium sea green. More... | |
static ACColor | LimeGreen [get] |
Gets the lime green. More... | |
static ACColor | DarkSlateGray [get] |
Gets the dark slate gray. More... | |
static ACColor | SeaGreen [get] |
Gets the sea green. More... | |
static ACColor | ForestGreen [get] |
Gets the forest green. More... | |
static ACColor | LightSeaGreen [get] |
Gets the light sea green. More... | |
static ACColor | DodgerBlue [get] |
Gets the dodger blue. More... | |
static ACColor | MidnightBlue [get] |
Gets the midnight blue. More... | |
static ACColor | Aqua [get] |
Gets the aqua. More... | |
static ACColor | SpringGreen [get] |
Gets the spring green. More... | |
static ACColor | Lime [get] |
Gets the lime. More... | |
static ACColor | MediumSpringGreen [get] |
Gets the medium spring green. More... | |
static ACColor | DarkTurquoise [get] |
Gets the dark turquoise. More... | |
static ACColor | DeepSkyBlue [get] |
Gets the deep sky blue. More... | |
static ACColor | DarkCyan [get] |
Gets the dark cyan. More... | |
static ACColor | Teal [get] |
Gets the teal. More... | |
static ACColor | DarkGreen [get] |
Gets the dark green. More... | |
static ACColor | MediumBlue [get] |
Gets the medium blue. More... | |
static ACColor | DarkBlue [get] |
Gets the dark blue. More... | |
static ACColor | Navy [get] |
Gets the navy. More... | |
static ACColor | Transparent [get] |
Gets the transparent. More... | |
byte | A [get, set] |
Gets or sets alpha value for the color More... | |
byte | R [get, set] |
Gets or sets the red value for the color More... | |
byte | G [get, set] |
Gets or sets the green value for the color More... | |
byte | B [get, set] |
Gets or sets the blue value for the color More... | |
A cross-platform tool for working with colors in the iOS and Android Mobile Operating systems. ACColor
represents a union of nearly all of the options and features of both UIColor
from iOS and the Color
object from Android so the property or method used on one platform can be used on another without change in syntax. Several new features are supported such creating a color from or returning a color as a CSS/Web Hex String in the form #RRGGBB or #AARRGGBB. ACColor
is fully compatible with UIColor
and Color
so it can be used anywhere those objects would be used and can be cast to and from those types implicitly.
ActionComponents.ACColor.ACColor | ( | ) |
Initializes a new instance of the ACColor
class with the color value set to pure white.
ActionComponents.ACColor.ACColor | ( | string | hexValue | ) |
Initializes a new instance of the ACColor
class.
hexValue | Hex value. |
ActionComponents.ACColor.ACColor | ( | byte | red, |
byte | green, | ||
byte | blue | ||
) |
Initializes a new instance of the ACColor
class.
red | Red. |
green | Green. |
blue | Blue. |
Android Color
style constructor
ActionComponents.ACColor.ACColor | ( | int | red, |
int | green, | ||
int | blue | ||
) |
Initializes a new instance of the ACColor
class.
red | Red. |
green | Green. |
blue | Blue. |
Android Color
style constructor
ActionComponents.ACColor.ACColor | ( | byte | alpha, |
byte | red, | ||
byte | green, | ||
byte | blue | ||
) |
Initializes a new instance of the ACColor
class.
alpha | Alpha. |
red | Red. |
green | Green. |
blue | Blue. |
Android Color
style constructor
ActionComponents.ACColor.ACColor | ( | int | alpha, |
int | red, | ||
int | green, | ||
int | blue | ||
) |
Initializes a new instance of the ACColor
class.
alpha | Alpha. |
red | Red. |
green | Green. |
blue | Blue. |
Android Color
style constructor
ActionComponents.ACColor.ACColor | ( | float | red, |
float | green, | ||
float | blue, | ||
float | alpha | ||
) |
Initializes a new instance of the ACColor
class.
red | Red. |
green | Green. |
blue | Blue. |
alpha | Alpha. |
iOS UIColor
style constructor
|
static |
Return a color from alpha, red, green, blue components. These component values should be [0..255].
alpha | Alpha. |
red | Red. |
green | Green. |
blue | Blue. |
ACColor ActionComponents.ACColor.ColorWithAlpha | ( | float | alpha | ) |
Creates a new color with the specified alpha channel from a reference color.
alpha | Alpha. |
|
static |
Converts a CSS/Web Color string specification in the form #RGB, #RRGGBB or #AARRGGBB to a ACColor
hexValue | Hex value. |
|
static |
Creates a color from using the hue, saturation and brightness components.
hue | Hue. |
saturation | Saturation. |
brightness | Brightness. |
|
static |
Creates a color from using the hue, saturation and brightness components with the given alpha value
hue | Hue. |
saturation | Saturation. |
brightness | Brightness. |
alpha | Alpha. |
|
static |
Creates a new color from the given red, green and blue values
red | Red. |
green | Green. |
blue | Blue. |
|
static |
Creates a new color from the given red, green and blue values
red | Red. |
green | Green. |
blue | Blue. |
|
static |
Creates a new color from the given red, green and blue values
red | Red. |
green | Green. |
blue | Blue. |
|
static |
Creates a new color from the given red, green and blue values with the given alpha value
red | Red. |
green | Green. |
blue | Blue. |
alpha | Alpha. |
|
static |
Creates a new color from the given red, green and blue values with the given alpha value
red | Red. |
green | Green. |
blue | Blue. |
alpha | Alpha. |
|
static |
Creates a new color from the given red, green and blue values with the given alpha value
red | Red. |
green | Green. |
blue | Blue. |
alpha | Alpha. |
|
static |
Creates a grayscale color, based on the current colorspace.
grayscale | Grayscale. |
alpha | Alpha. |
|
static |
Gets the Alpha component from an integer color.
color | Color. |
|
static |
Gets the Blue component from an integer color.
color | Color. |
float ActionComponents.ACColor.GetBrightness | ( | ) |
Gets the brightness.
|
static |
Gets the green component from an integer color
color | Color. |
void ActionComponents.ACColor.GetHSBA | ( | ref float | hue, |
ref float | saturation, | ||
ref float | brightness, | ||
ref float | alpha | ||
) |
Returns the hue, saturation, brightness and alpha components of the color.
hue | Hue. |
saturation | Saturation. |
brightness | Brightness. |
alpha | Alpha. |
float ActionComponents.ACColor.GetHue | ( | ) |
Gets the hue.
|
static |
Gets the red component from an integer color
color | Color. |
void ActionComponents.ACColor.GetRGBA | ( | ref float | red, |
ref float | green, | ||
ref float | blue, | ||
ref float | alpha | ||
) |
Returns the red, green, blue and alpha components of this color.
red | Red. |
green | Green. |
blue | Blue. |
alpha | Alpha. |
float ActionComponents.ACColor.GetSaturation | ( | ) |
Gets the saturation.
|
static |
Returns a gray color for the value given where 255 equals Pure White and 0 equals Pure Black
value | Value. |
|
static |
Converts an Android Color
to a ACColor
color | Color. |
|
static |
Converts a ACColor
to an Android Color
color | Color. |
|
static |
Return a color from red, green, blue components. These component values should be [0..255].
red | Red. |
green | Green. |
blue | Blue. |
void ActionComponents.ACColor.SetFill | ( | ) |
Sets the fill color in the current paint for the current canvas specified by the global UIGraphics
class.
This methods is used to ease the porting of graphics code from iOS to Android.
void ActionComponents.ACColor.SetStroke | ( | ) |
Sets the stroke color in the current paint for the current canvas specified by the global UIGraphics
class.
This methods is used to ease the porting of graphics code from iOS to Android.
int ActionComponents.ACColor.ToArgb | ( | ) |
Tos the ARGB.
Color ActionComponents.ACColor.ToColor | ( | ) |
Converts the ACColor
to a default Android
color and returns it
string ActionComponents.ACColor.ToHexString | ( | bool | withAlpha | ) |
Converts this ACColor
to a CSS/Web style hex color specification in the form #RRGGBB or ##AARRGGBB
withAlpha | If set to true with alpha. |
|
getset |
Gets or sets alpha value for the color
A.
|
staticget |
Gets the brick red.
The brick red.
|
staticget |
Gets the Appracatappra ActionPack Component Suite branded Orange color.
The action pack orange.
|
staticget |
Gets the cyan.
The cyan.
|
staticget |
Gets the dusty rose.
The dusty rose.
|
staticget |
Gets the grape.
The grape.
|
staticget |
Gets the green tea.
The green tea.
|
staticget |
Gets the lavendar.
The lavendar.
|
staticget |
Gets the navy blue.
The navy blue.
|
staticget |
Gets the orange.
The orange.
|
staticget |
Gets the pink.
The pink.
|
staticget |
Gets the pink grapefruit.
The pink grapefruit.
|
staticget |
Gets the red orange.
The red orange.
|
staticget |
Gets the sky blue.
The sky blue.
|
staticget |
Gets the teal.
The teal.
|
staticget |
Gets the yellow.
The yellow.
|
staticget |
Gets the yellow green.
The yellow green.
|
staticget |
Gets the yellow orange.
The yellow orange.
|
staticget |
Gets the alice blue.
The alice blue.
|
staticget |
Gets the antique white.
The antique white.
|
staticget |
Gets the aqua.
The aqua.
|
staticget |
Gets the aquamarine.
The aquamarine.
|
staticget |
Gets the azure.
The azure.
|
getset |
Gets or sets the blue value for the color
The b.
|
staticget |
Gets the beige.
The beige.
|
staticget |
Gets the bisque.
The bisque.
|
staticget |
Gets the black color
The black.
|
staticget |
Gets the blanched almond.
The blanched almond.
|
staticget |
Gets the blue.
The blue.
|
staticget |
Gets the blue violet.
The blue violet.
|
staticget |
Gets the brown.
The brown.
|
staticget |
Gets the burly wood.
The burly wood.
|
staticget |
Gets the cadet blue.
The cadet blue.
|
staticget |
Gets the chartreuse.
The chartreuse.
|
staticget |
Gets the chocolate.
The chocolate.
|
staticget |
Gets the clear.
The clear.
|
staticget |
Gets the coral.
The coral.
|
staticget |
Gets the cornflower blue.
The cornflower blue.
|
staticget |
Gets the cornsilk.
The cornsilk.
|
staticget |
Gets the crimson.
The crimson.
|
staticget |
Gets the cyan.
The cyan.
|
staticget |
Gets the dark blue.
The dark blue.
|
staticget |
Gets the dark cyan.
The dark cyan.
|
staticget |
Gets the dark goldenrod.
The dark goldenrod.
|
staticget |
Gets the dark gray.
The dark gray.
|
staticget |
Gets the dark green.
The dark green.
|
staticget |
Gets the dark khaki.
The dark khaki.
|
staticget |
Gets the dark magenta.
The dark magenta.
|
staticget |
Gets the dark olive green.
The dark olive green.
|
staticget |
Gets the dark orange.
The dark orange.
|
staticget |
Gets the dark orchid.
The dark orchid.
|
staticget |
Gets the dark red.
The dark red.
|
staticget |
Gets the dark salmon.
The dark salmon.
|
staticget |
Gets the dark sea green.
The dark sea green.
|
staticget |
Gets the dark slate blue.
The dark slate blue.
|
staticget |
Gets the dark slate gray.
The dark slate gray.
|
staticget |
Gets the color of the dark text.
The color of the dark text.
|
staticget |
Gets the dark turquoise.
The dark turquoise.
|
staticget |
Gets the dark violet.
The dark violet.
|
staticget |
Gets the deep pink.
The deep pink.
|
staticget |
Gets the deep sky blue.
The deep sky blue.
|
staticget |
Gets the dim gray.
The dim gray.
|
staticget |
Gets the dodger blue.
The dodger blue.
|
staticget |
Gets the fire brick.
The fire brick.
|
staticget |
Gets the floral white.
The floral white.
|
staticget |
Gets the forest green.
The forest green.
|
staticget |
Gets the fuchsia.
The fuchsia.
|
getset |
Gets or sets the green value for the color
The g.
|
staticget |
Gets the gainsboro.
The gainsboro.
|
staticget |
Gets the ghost white.
The ghost white.
|
staticget |
Gets the gold.
The gold.
|
staticget |
Gets the goldenrod.
The goldenrod.
|
staticget |
Gets the gray.
The gray.
|
staticget |
Gets the green.
The green.
|
staticget |
Gets the green yellow.
The green yellow.
|
staticget |
Gets the color of the group table view background.
The color of the group table view background.
|
staticget |
Gets the honeydew.
The honeydew.
|
staticget |
Gets the hot pink.
The hot pink.
|
staticget |
Gets the indian red.
The indian red.
|
staticget |
Gets the indigo.
The indigo.
|
staticget |
Gets the ivory.
The ivory.
|
staticget |
Gets the khaki.
The khaki.
|
staticget |
Gets the lavender.
The lavender.
|
staticget |
Gets the lavender blush.
The lavender blush.
|
staticget |
Gets the lawn green.
The lawn green.
|
staticget |
Gets the lemon chiffon.
The lemon chiffon.
|
staticget |
Gets the light blue.
The light blue.
|
staticget |
Gets the light coral.
The light coral.
|
staticget |
Gets the light cyan.
The light cyan.
|
staticget |
Gets the light goldenrod yellow.
The light goldenrod yellow.
|
staticget |
Gets the light gray.
The light gray.
|
staticget |
Gets the light green.
The light green.
|
staticget |
Gets the light grey.
The light grey.
|
staticget |
Gets the light pink.
The light pink.
|
staticget |
Gets the light salmon.
The light salmon.
|
staticget |
Gets the light sea green.
The light sea green.
|
staticget |
Gets the light sky blue.
The light sky blue.
|
staticget |
Gets the light slate gray.
The light slate gray.
|
staticget |
Gets the light steel blue.
The light steel blue.
|
staticget |
Gets the color of the light text.
The color of the light text.
|
staticget |
Gets the light yellow.
The light yellow.
|
staticget |
Gets the lime.
The lime.
|
staticget |
Gets the lime green.
The lime green.
|
staticget |
Gets the linen.
The linen.
|
staticget |
Gets the magenta.
The magenta.
|
staticget |
Gets the maroon.
The maroon.
|
staticget |
Gets the medium aquamarine.
The medium aquamarine.
|
staticget |
Gets the medium blue.
The medium blue.
|
staticget |
Gets the medium orchid.
The medium orchid.
|
staticget |
Gets the medium purple.
The medium purple.
|
staticget |
Gets the medium sea green.
The medium sea green.
|
staticget |
Gets the medium slate blue.
The medium slate blue.
|
staticget |
Gets the medium spring green.
The medium spring green.
|
staticget |
Gets the medium turquoise.
The medium turquoise.
|
staticget |
Gets the medium violet red.
The medium violet red.
|
staticget |
Gets the midnight blue.
The midnight blue.
|
staticget |
Gets the mint cream.
The mint cream.
|
staticget |
Gets the misty rose.
The misty rose.
|
staticget |
Gets the moccasin.
The moccasin.
|
staticget |
Gets the navajo white.
The navajo white.
|
staticget |
Gets the navy.
The navy.
|
staticget |
Gets the old lace.
The old lace.
|
staticget |
Gets the olive.
The olive.
|
staticget |
Gets the olive drab.
The olive drab.
|
staticget |
Gets the orange.
The orange.
|
staticget |
Gets the orange red.
The orange red.
|
staticget |
Gets the orchid.
The orchid.
|
staticget |
Gets the pale goldenrod.
The pale goldenrod.
|
staticget |
Gets the pale green.
The pale green.
|
staticget |
Gets the pale turquoise.
The pale turquoise.
|
staticget |
Gets the pale violet red.
The pale violet red.
|
staticget |
Gets the papaya whip.
The papaya whip.
|
staticget |
Gets the peach puff.
The peach puff.
|
staticget |
Gets the peru.
The peru.
|
staticget |
Gets the pink.
The pink.
|
staticget |
Gets the plum.
The plum.
|
staticget |
Gets the powder blue.
The powder blue.
|
staticget |
Gets the purple.
The purple.
|
getset |
Gets or sets the red value for the color
The r.
|
staticget |
Gets the red.
The red.
|
staticget |
Gets the rosy brown.
The rosy brown.
|
staticget |
Gets the royal blue.
The royal blue.
|
staticget |
Gets the saddle brown.
The saddle brown.
|
staticget |
Gets the salmon.
The salmon.
|
staticget |
Gets the sandy brown.
The sandy brown.
|
staticget |
Gets the color of the scroll view textured background.
The color of the scroll view textured background.
|
staticget |
Gets the sea green.
The sea green.
|
staticget |
Gets the seashell.
The seashell.
|
staticget |
Gets the sienna.
The sienna.
|
staticget |
Gets the silver.
The silver.
|
staticget |
Gets the sky blue.
The sky blue.
|
staticget |
Gets the slate blue.
The slate blue.
|
staticget |
Gets the slate gray.
The slate gray.
|
staticget |
Gets the snow.
The snow.
|
staticget |
Gets the spring green.
The spring green.
|
staticget |
Gets the steel blue.
The steel blue.
|
staticget |
Gets the tan.
The tan.
|
staticget |
Gets the teal.
The teal.
|
staticget |
Gets the thistle.
The thistle.
|
staticget |
Gets the tomato.
The tomato.
|
staticget |
Gets the transparent.
The transparent.
|
staticget |
Gets the turquoise.
The turquoise.
|
staticget |
Gets the color of the under page background.
The color of the under page background.
|
staticget |
Gets the color of the view flipside background.
The color of the view flipside background.
|
staticget |
Gets the violet.
The violet.
|
staticget |
Gets the wheat.
The wheat.
|
staticget |
Gets the white.
The white.
|
staticget |
Gets the white smoke.
The white smoke.
|
staticget |
Gets the yellow.
The yellow.
|
staticget |
Gets the yellow green.
The yellow green.