BootstrapComponents.Components.Forms.FormExtensions.InlineForm C# (CSharp) Method

InlineForm() public static method

public static InlineForm ( this html, string actionName = null, string controllerName = null, object routeValues = null, FormMethod method = FormMethod.Post, object htmlAttrs = null ) : Form
html this
actionName string
controllerName string
routeValues object
method FormMethod
htmlAttrs object
return Form
        public static Form InlineForm(this HtmlHelper html, string actionName = null, string controllerName = null, object routeValues = null, FormMethod method = FormMethod.Post, object htmlAttrs = null)
        {
            return new Form(html, actionName, controllerName, routeValues, method, htmlAttrs, FormType.Inline);
        }