Converts the specified string to a color
            
 
    Namespace: 
   Eto.Drawing
    Assembly:
   Eto (in Eto.dll) Version: 2.5.3-dev
 Syntax
Syntaxpublic static bool TryParse(
	string value,
	out Color color
)
Public Shared Function TryParse ( 
	value As String,
	<OutAttribute> ByRef color As Color
) As Boolean
static member TryParse : 
        value : string * 
        color : Color byref -> bool 
Parameters
- value
- Type: SystemString
 String value to parse
- color
- Type: Eto.DrawingColor
 Color struct with the parsed value, or Transparent if value is invalid
Return Value
Type: 
BooleanTrue if the value was successfully parsed into a color, false otherwise
 Remarks
Remarks
            The string can be any of these formats:
            	- #AARRGGBB or #RRGGBB  (where ARGB are hex values)
            	- 0xAARRGGBB or 0xRRGGBB
            	- [named] (where [named] is a name of one of the properties in 
Colors)
            	- [uint]  (where [uint] is a base-10 ARGB value)
            	- [red], [green], [blue] (where each component is a value from 0-255)
            	- [alpha], [red], [green], [blue]  (where each component is a value from 0-255)
            	
            If the string is null or empty, this will return 
Transparent See Also
See Also