NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IWebFormsBuilderService.BuildColor

Launches the HTML Color Picker to allow the user to select a color.

[Visual Basic]
Function BuildColor( _
   ByVal owner As Control, _
   ByVal initialColor As String _
) As String
[C#]
string BuildColor(
   Control owner,
   string initialColor
);
[C++]
String* BuildColor(
   Control* owner,
   String* initialColor
) = 0;
[JScript]
function BuildColor(
   owner : Control,
   initialColor : String
) : String;

Parameters

owner
The control that will be used as the parent for the picker window.
initialColor
The initial or current value of the color being built.

Return Value

The return string.

See Also

IWebFormsBuilderService Interface | IWebFormsBuilderService Members | System.Web.UI.Design Namespace