HtmlHelper<TModel>.TextBoxFor<TResult> メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した の <"text" 型の入力> 要素を返します expression
。 で見つかったModelState最初の非null
値を含む要素に "value" 属性を追加します。完全な名前を持つエントリ、に対してModel評価された エントリ、expression
またはhtmlAttributes
キー "value" を持つディクショナリ エントリ。
"full name" の詳細については、「」を参照してください NameFor<TResult>(Expression<Func<TModel,TResult>>) 。
public:
generic <typename TResult>
virtual Microsoft::AspNetCore::Html::IHtmlContent ^ TextBoxFor(System::Linq::Expressions::Expression<Func<TModel, TResult> ^> ^ expression, System::String ^ format, System::Object ^ htmlAttributes);
public Microsoft.AspNetCore.Html.IHtmlContent TextBoxFor<TResult> (System.Linq.Expressions.Expression<Func<TModel,TResult>> expression, string format, object htmlAttributes);
abstract member TextBoxFor : System.Linq.Expressions.Expression<Func<'Model, 'Result>> * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
override this.TextBoxFor : System.Linq.Expressions.Expression<Func<'Model, 'Result>> * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
Public Function TextBoxFor(Of TResult) (expression As Expression(Of Func(Of TModel, TResult)), format As String, htmlAttributes As Object) As IHtmlContent
型パラメーター
- TResult
結果の expression
型。
パラメーター
- expression
- Expression<Func<TModel,TResult>>
現在のモデルに対して評価される式。
- format
- String
"value" 属性で値を使用するときに値のexpression
書式設定に使用される書式指定文字列 (「」を参照https://msdn.microsoft.com/en-us/library/txafckwd.aspx)。
- htmlAttributes
- Object
Object要素の HTML 属性を格納している 。 または、HTML 属性を IDictionary<TKey,TValue> 含むインスタンスです。
戻り値
入力>要素を<含む新しい IHtmlContent 。