HtmlHelper.DropDownList メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
の単一選択 HTML <選択> 要素を返します expression
。 と selectList
に基づいてオプション>要素をoptionLabel
追加<します。 オプションに "selected" 属性<>を追加します (非null
の場合) かText、完全名を持つエントリ、完全な名前を持つエントリ (の代わりに使用する場合を除く)、ViewDataまたは expression
に対して評価された が含まれる最初のselectList
値null
ModelStateと一致するModel場合Value。
"full name" の詳細については、「」を参照してください Name(String) 。
public:
virtual Microsoft::AspNetCore::Html::IHtmlContent ^ DropDownList(System::String ^ expression, System::Collections::Generic::IEnumerable<Microsoft::AspNetCore::Mvc::Rendering::SelectListItem ^> ^ selectList, System::String ^ optionLabel, System::Object ^ htmlAttributes);
public Microsoft.AspNetCore.Html.IHtmlContent DropDownList (string expression, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Mvc.Rendering.SelectListItem> selectList, string optionLabel, object htmlAttributes);
abstract member DropDownList : string * seq<Microsoft.AspNetCore.Mvc.Rendering.SelectListItem> * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
override this.DropDownList : string * seq<Microsoft.AspNetCore.Mvc.Rendering.SelectListItem> * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
Public Function DropDownList (expression As String, selectList As IEnumerable(Of SelectListItem), optionLabel As String, htmlAttributes As Object) As IHtmlContent
パラメーター
- expression
- String
現在のモデルを基準とした式名。
- selectList
- IEnumerable<SelectListItem>
select> 要素に optgroup> 要素と <option> 要素<を<設定するために使用される オブジェクトのコレクションSelectListItem。 の場合 null
は、完全な名前の ViewData エントリを使用し、そのエントリは オブジェクトの SelectListItem コレクションである必要があります。
- optionLabel
- String
既定の空の項目のテキスト。 引数が の場合、このような項目は null
含まれません。
- htmlAttributes
- Object
Object select> 要素の HTML 属性を格納している <。 または、HTML 属性を IDictionary<TKey,TValue> 含むインスタンスです。
戻り値
select> 要素を<含む新しい IHtmlContent 。