HtmlHelperExtensions.CheckBoxFor<TModel> Method (HtmlHelper<TModel>, Expression<Func<TModel, Boolean>>, String, String, Boolean, String, String, Nullable<Int32>, Boolean, Nullable<Int32>, String, Nullable<Int32>, String)

 

Namespace:   Microsoft.Web.Mvc.Html
Assembly:  Microsoft.Web.Mvc (in Microsoft.Web.Mvc.dll)

Syntax

public static MvcHtmlString CheckBoxFor<TModel>(
    this HtmlHelper<TModel> htmlHelper,
    Expression<Func<TModel, bool>> expression,
    string cssClass = null,
    string dir = null,
    bool disabled = false,
    string id = null,
    string lang = null,
    Nullable<int> maxLength = null,
    bool readOnly = false,
    Nullable<int> size = null,
    string style = null,
    Nullable<int> tabIndex = null,
    string title = null
)
public:
generic<typename TModel>
[ExtensionAttribute]
static MvcHtmlString^ CheckBoxFor(
    HtmlHelper<TModel>^ htmlHelper,
    Expression<Func<TModel, bool>^>^ expression,
    String^ cssClass = null,
    String^ dir = null,
    bool disabled = false,
    String^ id = null,
    String^ lang = null,
    Nullable<int> maxLength = null,
    bool readOnly = false,
    Nullable<int> size = null,
    String^ style = null,
    Nullable<int> tabIndex = null,
    String^ title = null
)
static member CheckBoxFor<'TModel> : 
        htmlHelper:HtmlHelper<'TModel> *
        expression:Expression<Func<'TModel, bool>> *
        cssClass:string = null *
        dir:string = null *
        disabled:bool = false *
        id:string = null *
        lang:string = null *
        maxLength:Nullable<int> = null *
        readOnly:bool = false *
        size:Nullable<int> = null *
        style:string = null *
        tabIndex:Nullable<int> = null *
        title:string = null -> MvcHtmlString
<ExtensionAttribute>
Public Shared Function CheckBoxFor(Of TModel) (
    htmlHelper As HtmlHelper(Of TModel),
    expression As Expression(Of Func(Of TModel, Boolean)),
    cssClass As String,
    dir As String,
    disabled As Boolean,
    id As String,
    lang As String,
    maxLength As Nullable(Of Integer),
    readOnly As Boolean,
    size As Nullable(Of Integer),
    style As String,
    tabIndex As Nullable(Of Integer),
    title As String
) As MvcHtmlString

Parameters

Return Value

Type: System.Web.Mvc.MvcHtmlString

Type Parameters

  • TModel

See Also

HtmlHelperExtensions Class
Microsoft.Web.Mvc.Html Namespace

Return to top