Initializes a new instance of the RdlColor class with an expression or a literal color value.

Namespace:  C1.C1Rdl
Assembly:  C1.C1Report.2 (in C1.C1Report.2.dll)

Syntax

C#
public RdlColor(
	string s
)
Visual Basic
Public Sub New ( _
	s As String _
)

Parameters

s
Type: System..::..String
A string used to initialize the new instance.

If this string starts with an equal sign ('=') it is interpreted as an exprssion.

Otherwise, this string is converted to a System.Drawing.Color value (an exception is thrown if that conversion fails).

See Also