次の方法で共有


ColorBuilder.BuildColor(IComponent, Control, String) メソッド

定義

HTML カラー プロパティ値をビルドするために、カラー エディターを起動します。

public:
 static System::String ^ BuildColor(System::ComponentModel::IComponent ^ component, System::Windows::Forms::Control ^ owner, System::String ^ initialColor);
public static string BuildColor (System.ComponentModel.IComponent component, System.Windows.Forms.Control owner, string initialColor);
static member BuildColor : System.ComponentModel.IComponent * System.Windows.Forms.Control * string -> string
Public Shared Function BuildColor (component As IComponent, owner As Control, initialColor As String) As String

パラメーター

component
IComponent

デザイン時サービスにアクセスするために使用するサイトを持つ IComponent

owner
Control

ピッカー ウィンドウの親として使用される Control

initialColor
String

有効な HTML カラー形式でピッカー ウィンドウに表示される初期設定の色。

戻り値

HTML カラー形式の文字列として表されるカラー値、またはビルダー サービスが取得できなかった場合は null

// Create a parent control.
System::Windows::Forms::Control^ c = gcnew System::Windows::Forms::Control;
c->CreateControl();

// Launch the Color Builder using the specified control
// parent and an initial HTML format (S"RRGGBB") color String*.
System::Web::UI::Design::ColorBuilder::BuildColor( this->Component, c, "405599" );
// Create a parent control.
System.Windows.Forms.Control c = new System.Windows.Forms.Control();            
c.CreateControl();            

// Launch the Color Builder using the specified control 
// parent and an initial HTML format ("RRGGBB") color string.
System.Web.UI.Design.ColorBuilder.BuildColor(this.Component, c, "405599");
' Create a parent control.
Dim c As New System.Windows.Forms.Control()
c.CreateControl()

' Launch the Color Builder using the specified control 
' parent and an initial HTML format ("RRGGBB") color string.
System.Web.UI.Design.ColorBuilder.BuildColor(Me.Component, c, "405599")

注釈

以外の場合 nullに返される文字列は、有効な HTML 色形式の色を示します。 有効な形式には、名前付きの色と RGB 形式 (#RRGGBB) の色コードが含まれます。

適用対象