CssStyleCollection.Item[] 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
HTML 서버 컨트롤에 지정된 CSS 값을 가져오거나 설정합니다.
오버로드
Item[String] |
HTML 서버 컨트롤에 지정한 CSS 값을 가져오거나 설정합니다. |
Item[HtmlTextWriterStyle] |
HTML 서버 컨트롤에 지정된 HtmlTextWriterStyle 값을 가져오거나 설정합니다. |
Item[String]
HTML 서버 컨트롤에 지정한 CSS 값을 가져오거나 설정합니다.
public:
property System::String ^ default[System::String ^] { System::String ^ get(System::String ^ key); void set(System::String ^ key, System::String ^ value); };
public string this[string key] { get; set; }
member this.Item(string) : string with get, set
Default Public Property Item(key As String) As String
매개 변수
- key
- String
CSS 특성에 대한 인덱스입니다.
속성 값
key
의 값
예제
다음 코드 예제에서는 컨트롤에 Item[] HtmlInputText 설정 된 스타일의 값을 반환 하는 속성을 사용 합니다.
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
MyText.Style.Add(HtmlTextWriterStyle.Width, "200");
FirstMessage.Text = "The text box font color is: " +
MyText.Style["color"] + "<br />" +
"The text box width is: " +
MyText.Style[HtmlTextWriterStyle.Width];
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>CssCollection This Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<input id="MyText"
type="text"
value="Type a value here."
style="font: 14pt Verdana; color: blue;"
runat="server"/>
<br />
<asp:Label id="FirstMessage"
runat="server"/>
</div>
</form>
</body>
</html>
<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
MyText.Style.Add(HtmlTextWriterStyle.Width, "200")
FirstMessage.Text = "The text box font color is: " _
& MyText.Style("color") & "<br />" _
& "The text box width is: " & MyText.Style(HtmlTextWriterStyle.Width)
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>CssCollection This Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<input id="MyText"
type="text"
value="Type a value here."
style="font: 14pt Verdana; color: blue;"
runat="server"/>
<br />
<asp:Label id="FirstMessage"
runat="server"/>
</div>
</form>
</body>
</html>
추가 정보
적용 대상
Item[HtmlTextWriterStyle]
HTML 서버 컨트롤에 지정된 HtmlTextWriterStyle 값을 가져오거나 설정합니다.
public:
property System::String ^ default[System::Web::UI::HtmlTextWriterStyle] { System::String ^ get(System::Web::UI::HtmlTextWriterStyle key); void set(System::Web::UI::HtmlTextWriterStyle key, System::String ^ value); };
public string this[System.Web.UI.HtmlTextWriterStyle key] { get; set; }
member this.Item(System.Web.UI.HtmlTextWriterStyle) : string with get, set
Default Public Property Item(key As HtmlTextWriterStyle) As String
매개 변수
속성 값
key
값이거나, key
가 서버 컨트롤의 컬렉션에 있을 경우 null
입니다.
예제
다음 코드 예제에서는 컨트롤에 Item[] HtmlInputText 설정 된 스타일의 값을 반환 하는 속성을 사용 합니다.
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
protected void Page_Load(object sender, EventArgs e)
{
MyText.Style.Add(HtmlTextWriterStyle.Width, "200");
FirstMessage.Text = "The text box font color is: " +
MyText.Style["color"] + "<br />" +
"The text box width is: " +
MyText.Style[HtmlTextWriterStyle.Width];
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>CssCollection This Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<input id="MyText"
type="text"
value="Type a value here."
style="font: 14pt Verdana; color: blue;"
runat="server"/>
<br />
<asp:Label id="FirstMessage"
runat="server"/>
</div>
</form>
</body>
</html>
<%@ Page Language="VB" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script runat="server">
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
MyText.Style.Add(HtmlTextWriterStyle.Width, "200")
FirstMessage.Text = "The text box font color is: " _
& MyText.Style("color") & "<br />" _
& "The text box width is: " & MyText.Style(HtmlTextWriterStyle.Width)
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>CssCollection This Example</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<input id="MyText"
type="text"
value="Type a value here."
style="font: 14pt Verdana; color: blue;"
runat="server"/>
<br />
<asp:Label id="FirstMessage"
runat="server"/>
</div>
</form>
</body>
</html>
설명
속성 또는 Add 열거형 값을 입력으로 사용하는 HtmlTextWriterStyle 메서드를 사용하여 컨트롤 Item[] 의 컬렉션에 프로그래밍 방식으로 CssStyleCollection 추가되는 스타일 항목은 속성과 함께 반환되고 속성과 함께 Count Value 반환되는 문자열 리터럴에 포함된 스타일 항목의 수에 포함됩니다. 이러한 특성은 강력한 형식입니다. 서버 컨트롤에 추가하려는 계단식 스타일시트 특성이 열거형에 HtmlTextWriterStyle 있는 경우 강력한 형식의 메서드를 사용합니다. 추가하려는 특성이 열거형에 HtmlTextWriterStyle 없는 경우 속성 또는 메서드를 Add 사용합니다Item[].
추가되지 않은 컨트롤의 열거형 값에 액세스 HtmlTextWriterStyle 하거나 속성 또는 메서드와 함께 추가된 CSS 특성에 Item[] Add 액세스하려고 하면 속성을 사용하여 Item[] 반환 null
CssStyleCollection 됩니다.