次の方法で共有


ControlDesigner.CreatePlaceHolderDesignTimeHtml メソッド

コントロールについてわかりやすい表示をするための十分な情報がない場合は、デザイン時に、コントロールの関連情報を表示するために使用できる、コントロール用の単純な HTML セクションを作成します。

オーバーロードの一覧

コントロールについてわかりやすい表示をするための十分な情報がない場合は、デザイン時に、コントロールの関連情報を表示するために使用できる、コントロール用の単純な HTML セクションを作成します。

[Visual Basic] Overloads Protected Function CreatePlaceHolderDesignTimeHtml() As String

[C#] protected string CreatePlaceHolderDesignTimeHtml();

[C++] protected: String* CreatePlaceHolderDesignTimeHtml();

[JScript] protected function CreatePlaceHolderDesignTimeHtml() : String;

コントロールについてわかりやすい表示をするための十分な情報がない場合は、デザイン時に、コントロールの関連情報を表示するために使用できるコントロール用の単純な HTML セクションを指定された追加情報を使用して作成します。

[Visual Basic] Overloads Protected Function CreatePlaceHolderDesignTimeHtml(String) As String

[C#] protected string CreatePlaceHolderDesignTimeHtml(string);

[C++] protected: String* CreatePlaceHolderDesignTimeHtml(String*);

[JScript] protected function CreatePlaceHolderDesignTimeHtml(String) : String;

使用例

[Visual Basic] テンプレート宣言されたコントロール デザイナの GetEmptyDesignTimeHtml メソッドをオーバーライドするコード例を次に示します。このコードは、 TemplatedControlDesigner.CanEnterTemplateMode プロパティの値を調べ、その結果に応じて、文字列変数に設定する値を 2 つの選択肢から選びます。結果として得られる文字列は、 CreatePlaceHolderDesignTimeHtml メソッドの呼び出し時に instruction パラメータに渡されます。

[Visual Basic] メモ   ここでは、CreatePlaceHolderDesignTimeHtml のオーバーロード形式のうちの 1 つだけについて、使用例を示します。その他の例については、各オーバーロード形式のトピックを参照してください。

 
' Override the GetEmptyDesignTimeHtml to check whether 
' template mode can be used from the designer, and provide
' display messages for both cases.      
Protected Overrides Function GetEmptyDesignTimeHtml() As String
   Dim textValue As String
   
   If CanEnterTemplateMode Then
      textValue = "Right click and choose a set of templates to edit their content.<br>The ItemTemplate is required."
   Else
      textValue = "Switch to HTML view to edit the control's templates.<br>The ItemTemplate is required."
   End If
   Return CreatePlaceHolderDesignTimeHtml(textValue)
End Function

[C#, C++, JScript] C#、C++、および JScript のサンプルはありません。Visual Basic のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

参照

ControlDesigner クラス | ControlDesigner メンバ | System.Web.UI.Design 名前空間