HtmlHelper.GenerateTextBox Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Generates a text box.
protected:
virtual Microsoft::AspNetCore::Html::IHtmlContent ^ GenerateTextBox(Microsoft::AspNetCore::Mvc::ViewFeatures::ModelExplorer ^ modelExplorer, System::String ^ expression, System::Object ^ value, System::String ^ format, System::Object ^ htmlAttributes);
protected virtual Microsoft.AspNetCore.Html.IHtmlContent GenerateTextBox (Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer modelExplorer, string expression, object value, string format, object htmlAttributes);
abstract member GenerateTextBox : Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer * string * obj * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
override this.GenerateTextBox : Microsoft.AspNetCore.Mvc.ViewFeatures.ModelExplorer * string * obj * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
Protected Overridable Function GenerateTextBox (modelExplorer As ModelExplorer, expression As String, value As Object, format As String, htmlAttributes As Object) As IHtmlContent
Parameters
- modelExplorer
- ModelExplorer
The ModelExplorer.
- expression
- String
The expression.
- value
- Object
The value.
- format
- String
The format.
- htmlAttributes
- Object
An Object that contains the HTML attributes for the element. Alternatively, an IDictionary<TKey,TValue> instance containing the HTML attributes.
Returns
The IHtmlContent.