Difference between revisions of "Color class"
Nguyenduyan (talk | contribs) |
|||
Line 43: | Line 43: | ||
|Description=<nowiki>Create new color object</nowiki>}} | |Description=<nowiki>Create new color object</nowiki>}} | ||
}} | }} | ||
+ | (See more at [[Color_getByName]] and [[Color_getByRGB]]) |
Revision as of 10:33, 11 July 2018
Color
Represents a color.
Constructors
- (string value "Value of color", bool ishtmlHex "If true, parse as html style hex, otherwise parse as system named color") - Create color from name
- (Color color "Base color", int alpha "Alpha part") - Create alpha color from existing color
- (int red "Red part", int green "Green part", int blue "Blue part") - Create color from rgb
- (int red "Red part", int green "Green part", int blue "Blue part", int alpha "Alpha part") - Create color from rgb
Methods
- object this[] { get; }(int index "Index") - Backward-compatible indexer
- Empty this[] { set; }(int index "Index", object value "Value to set") - Backward-compatible indexer
- string ToString() - The string representation of the object.
Properties
- int Alpha { get; } - Get alpha part of color
- int Blue { get; } - Get blue part of color
- int Green { get; } - Get green part of color
- string HtmlRgbaHex { get; } - Get the #xxxxxxxx html encoding of colors
- string HtmlRgbHex { get; } - Get the #xxxxxx html encoding of colors
- string ObjectTypeName { get; } - The name of the type of object.
- int Red { get; } - Get red part of color
- TypeInformation TypeInformation { get; } - Get information about this class.
Static Methods
- Color Color_getByName(string name "System color name") - Create new color object
- Color Color_getByRGB(string htmlhex "html encoded color") - Create new color object
- Color Color_getByRGB(int red "Red part", int green "Green part", int blue "Blue part") - Create new color object
(See more at Color_getByName and Color_getByRGB)