HtmlHelperInputExtensions.TextArea 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
TextArea(IHtmlHelper, String) |
지정된 |
TextArea(IHtmlHelper, String, Object) |
지정된 |
TextArea(IHtmlHelper, String, String) |
지정된 |
TextArea(IHtmlHelper, String, String, Object) |
지정된 |
TextArea(IHtmlHelper, String)
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
지정된 expression
에 <대한 textarea> 요소를 반환합니다. 에 있는 ModelState 첫 번째 비값null
을 기반으로 요소 본문에 콘텐츠를 추가합니다. 전체 이름을 가진 항목, ViewData 전체 이름을 가진 항목 또는 expression
에 대해 Model평가된 입니다.
"전체 이름"에 대한 자세한 내용은 를 참조하세요 Name(String) .
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ TextArea(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression);
public static Microsoft.AspNetCore.Html.IHtmlContent TextArea (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression);
static member TextArea : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function TextArea (htmlHelper As IHtmlHelper, expression As String) As IHtmlContent
매개 변수
- htmlHelper
- IHtmlHelper
이 메서드가 IHtmlHelper 확장되는 instance.
- expression
- String
현재 모델을 기준으로 하는 식 이름입니다.
반환
textarea 요소를 포함하는 <새 IHtmlContent 입니다>.
설명
및 를 HtmlFieldPrefix 결합하여 textarea> 요소의 "name" 특성을 설정합니다<.expression
expression
요소의 "id" 특성을 설정하도록 삭제합니다.
적용 대상
TextArea(IHtmlHelper, String, Object)
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
지정된 expression
에 <대한 textarea> 요소를 반환합니다. 에 있는 ModelState 첫 번째 비값null
을 기반으로 요소 본문에 콘텐츠를 추가합니다. 전체 이름을 가진 항목, ViewData 전체 이름을 가진 항목 또는 expression
에 대해 Model평가된 입니다.
"전체 이름"에 대한 자세한 내용은 를 참조하세요 Name(String) .
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ TextArea(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression, System::Object ^ htmlAttributes);
public static Microsoft.AspNetCore.Html.IHtmlContent TextArea (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression, object htmlAttributes);
static member TextArea : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function TextArea (htmlHelper As IHtmlHelper, expression As String, htmlAttributes As Object) As IHtmlContent
매개 변수
- htmlHelper
- IHtmlHelper
이 메서드가 IHtmlHelper 확장되는 instance.
- expression
- String
현재 모델을 기준으로 하는 식 이름입니다.
- htmlAttributes
- Object
Object 요소에 대한 HTML 특성이 들어 있는 입니다. IDictionary<TKey,TValue> 또는 HTML 특성을 포함하는 instance.
반환
textarea 요소를 포함하는 <새 IHtmlContent 입니다>.
설명
및 를 HtmlFieldPrefix 결합하여 textarea> 요소의 "name" 특성을 설정합니다<.expression
expression
요소의 "id" 특성을 설정하도록 삭제합니다.
적용 대상
TextArea(IHtmlHelper, String, String)
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
지정된 expression
에 <대한 textarea> 요소를 반환합니다. 에 있는 ModelState 첫 번째 비값null
을 기반으로 요소 본문에 콘텐츠를 추가합니다. 전체 이름을 가진 항목, 매개 변수, value
ViewData 전체 이름의 항목 또는 expression
에 대해 Model평가된 입니다.
"전체 이름"에 대한 자세한 내용은 를 참조하세요 Name(String) .
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ TextArea(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression, System::String ^ value);
public static Microsoft.AspNetCore.Html.IHtmlContent TextArea (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression, string value);
static member TextArea : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function TextArea (htmlHelper As IHtmlHelper, expression As String, value As String) As IHtmlContent
매개 변수
- htmlHelper
- IHtmlHelper
이 메서드가 IHtmlHelper 확장되는 instance.
- expression
- String
현재 모델을 기준으로 하는 식 이름입니다.
- value
- String
이 아닌null
경우 요소에 포함할 값입니다.
반환
textarea 요소를 포함하는 <새 IHtmlContent 입니다>.
설명
및 를 HtmlFieldPrefix 결합하여 textarea> 요소의 "name" 특성을 설정합니다<.expression
expression
요소의 "id" 특성을 설정하도록 삭제합니다.
적용 대상
TextArea(IHtmlHelper, String, String, Object)
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
- Source:
- HtmlHelperInputExtensions.cs
지정된 expression
에 <대한 textarea> 요소를 반환합니다. 에 있는 ModelState 첫 번째 비값null
을 기반으로 요소 본문에 콘텐츠를 추가합니다. 전체 이름을 가진 항목, 매개 변수, value
ViewData 전체 이름의 항목 또는 expression
에 대해 Model평가된 입니다.
"전체 이름"에 대한 자세한 내용은 를 참조하세요 Name(String) .
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ TextArea(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression, System::String ^ value, System::Object ^ htmlAttributes);
public static Microsoft.AspNetCore.Html.IHtmlContent TextArea (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression, string value, object htmlAttributes);
static member TextArea : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function TextArea (htmlHelper As IHtmlHelper, expression As String, value As String, htmlAttributes As Object) As IHtmlContent
매개 변수
- htmlHelper
- IHtmlHelper
이 메서드가 IHtmlHelper 확장되는 instance.
- expression
- String
현재 모델을 기준으로 하는 식 이름입니다.
- value
- String
이 아닌null
경우 요소에 포함할 값입니다.
- htmlAttributes
- Object
Object 요소에 대한 HTML 특성이 들어 있는 입니다. IDictionary<TKey,TValue> 또는 HTML 특성을 포함하는 instance.
반환
textarea 요소를 포함하는 <새 IHtmlContent 입니다>.
설명
및 를 HtmlFieldPrefix 결합하여 textarea> 요소의 "name" 특성을 설정합니다<.expression
expression
요소의 "id" 특성을 설정하도록 삭제합니다.