Method | Description | |
---|---|---|
GetActualColor ( string colorValue ) : |
Parses a color value in CSS style; e.g. #ff0000, red, rgb(255,0,0), rgb(100%, 0, 0)
|
Method | Description | |
---|---|---|
GetColorByHex ( string str, int idx, int length, |
Get color by parsing given hex value color string (#A28B34).
|
|
GetColorByName ( string str, int idx, int length, |
Get color by given name, including .NET name.
|
|
GetColorByRgb ( string str, int idx, int length, |
Get color by parsing given RGB value color string (RGB(255,180,90))
|
|
GetColorByRgba ( string str, int idx, int length, |
Get color by parsing given RGBA value color string (RGBA(255,180,90,180))
|
|
ParseHexInt ( string str, int idx, int length ) : int |
Parse the given hex number string to positive int value. Assume given substring is not empty and all indexes are valid!
|
|
ParseInt ( string str, int idx, int length ) : int |
Parse the given decimal number string to positive int value. Assume given substring is not empty and all indexes are valid!
|
|
ParseIntAtIndex ( string str, int &startIdx ) : int |
Parse the given decimal number string to positive int value.
|
|
SubStringEquals ( string str, int idx, int length, string str2 ) : bool |
Compare that the substring of str is equal to str Assume given substring is not empty and all indexes are valid!
|
|
TryGetColor ( string str, int idx, int length, |
Parses a color value in CSS style; e.g. #ff0000, RED, RGB(255,0,0), RGB(100%, 0, 0)
|
public static GetActualColor ( string colorValue ) : |
||
colorValue | string | color string value to parse |
return |