共用方式為


InputExtensions.CheckBoxFor 方法

定義

多載

CheckBoxFor<TModel>(HtmlHelper<TModel>, Expression<Func<TModel,Boolean>>)

傳回物件中由指定運算式表示之每個屬性的核取方塊輸入專案。

CheckBoxFor<TModel>(HtmlHelper<TModel>, Expression<Func<TModel,Boolean>>, IDictionary<String,Object>)

使用指定的 HTML 屬性,傳回物件中每個屬性的核取方塊輸入元素,由指定的運算式表示。

CheckBoxFor<TModel>(HtmlHelper<TModel>, Expression<Func<TModel,Boolean>>, Object)

使用指定的 HTML 屬性,傳回物件中每個屬性的核取方塊輸入元素,由指定的運算式表示。

CheckBoxFor<TModel>(HtmlHelper<TModel>, Expression<Func<TModel,Boolean>>)

傳回物件中由指定運算式表示之每個屬性的核取方塊輸入專案。

public static System.Web.Mvc.MvcHtmlString CheckBoxFor<TModel> (this System.Web.Mvc.HtmlHelper<TModel> htmlHelper, System.Linq.Expressions.Expression<Func<TModel,bool>> expression);
static member CheckBoxFor : System.Web.Mvc.HtmlHelper<'Model> * System.Linq.Expressions.Expression<Func<'Model, bool>> -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function CheckBoxFor(Of TModel) (htmlHelper As HtmlHelper(Of TModel), expression As Expression(Of Func(Of TModel, Boolean))) As MvcHtmlString

類型參數

TModel

模型的型別。

參數

htmlHelper
HtmlHelper<TModel>

此方法擴充的 HTML Helper 執行個體。

expression
Expression<Func<TModel,Boolean>>

運算式,可識別包含要呈現之屬性的物件。

傳回

HTML 輸入專案,其類型屬性會針對指定運算式所代表之物件中的每個屬性設定為 「核取方塊」。

例外狀況

expression 參數為 null。

適用於

CheckBoxFor<TModel>(HtmlHelper<TModel>, Expression<Func<TModel,Boolean>>, IDictionary<String,Object>)

使用指定的 HTML 屬性,傳回物件中每個屬性的核取方塊輸入元素,由指定的運算式表示。

public static System.Web.Mvc.MvcHtmlString CheckBoxFor<TModel> (this System.Web.Mvc.HtmlHelper<TModel> htmlHelper, System.Linq.Expressions.Expression<Func<TModel,bool>> expression, System.Collections.Generic.IDictionary<string,object> htmlAttributes);
static member CheckBoxFor : System.Web.Mvc.HtmlHelper<'Model> * System.Linq.Expressions.Expression<Func<'Model, bool>> * System.Collections.Generic.IDictionary<string, obj> -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function CheckBoxFor(Of TModel) (htmlHelper As HtmlHelper(Of TModel), expression As Expression(Of Func(Of TModel, Boolean)), htmlAttributes As IDictionary(Of String, Object)) As MvcHtmlString

類型參數

TModel

模型的型別。

參數

htmlHelper
HtmlHelper<TModel>

此方法擴充的 HTML Helper 執行個體。

expression
Expression<Func<TModel,Boolean>>

運算式,可識別包含要呈現之屬性的物件。

htmlAttributes
IDictionary<String,Object>

字典,其中包含要針對項目設定的 HTML 屬性。

傳回

HTML input 元素,其 type 屬性 (Attribute) 使用指定的 HTML 屬性 (Attribute),針對指定運算式所表示之物件中的每一個屬性 (Property) 設定為 "checkbox"。

例外狀況

expression 參數為 null。

適用於

CheckBoxFor<TModel>(HtmlHelper<TModel>, Expression<Func<TModel,Boolean>>, Object)

使用指定的 HTML 屬性,傳回物件中每個屬性的核取方塊輸入元素,由指定的運算式表示。

public static System.Web.Mvc.MvcHtmlString CheckBoxFor<TModel> (this System.Web.Mvc.HtmlHelper<TModel> htmlHelper, System.Linq.Expressions.Expression<Func<TModel,bool>> expression, object htmlAttributes);
static member CheckBoxFor : System.Web.Mvc.HtmlHelper<'Model> * System.Linq.Expressions.Expression<Func<'Model, bool>> * obj -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function CheckBoxFor(Of TModel) (htmlHelper As HtmlHelper(Of TModel), expression As Expression(Of Func(Of TModel, Boolean)), htmlAttributes As Object) As MvcHtmlString

類型參數

TModel

模型的型別。

參數

htmlHelper
HtmlHelper<TModel>

此方法擴充的 HTML Helper 執行個體。

expression
Expression<Func<TModel,Boolean>>

運算式,可識別包含要呈現之屬性的物件。

htmlAttributes
Object

物件,包含要針對項目設定的 HTML 屬性。

傳回

HTML input 元素,其 type 屬性 (Attribute) 使用指定的 HTML 屬性 (Attribute),針對指定運算式所表示之物件中的每一個屬性 (Property) 設定為 "checkbox"。

例外狀況

expression 參數為 null。

適用於