HtmlTableCell.RowSpan 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
HtmlTableCell 클래스의 인스턴스에서 나타내는 셀이 차지하는 행 수를 가져오거나 설정합니다.
public:
property int RowSpan { int get(); void set(int value); };
public int RowSpan { get; set; }
member this.RowSpan : int with get, set
Public Property RowSpan As Integer
속성 값
HtmlTableCell 클래스의 인스턴스에서 나타내는 셀이 차지하는 행 수입니다. 기본값은 -1
로, 이 속성이 설정되지 않았음을 나타냅니다.
예제
다음 코드 예제를 사용 하는 방법에 설명 합니다 RowSpan 속성을 지정 하는 첫 번째 열에 있는 셀은 HtmlTable 컨트롤 두 행에 걸쳐.
<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>HtmlTableCell Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>HtmlTableCell Example</h3>
<table id="Table1" runat="server"
style="border-width: 1; border-color: Black">
<tr>
<td rowspan="2">
Cell 1.
</td>
<td>
Cell 2.
</td>
</tr>
<tr>
<td>
Cell 4.
</td>
</tr>
</table>
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>HtmlTableCell Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>HtmlTableCell Example</h3>
<table id="Table1" runat="server"
style="border-width: 1; border-color: Black">
<tr>
<td rowspan="2">
Cell 1.
</td>
<td>
Cell 2.
</td>
</tr>
<tr>
<td>
Cell 4.
</td>
</tr>
</table>
</form>
</body>
</html>
설명
인스턴스에서 나타내는 셀의 HtmlTableCell 클래스를 사용 하 여는 RowSpan 셀이 차지 하는 행 수를 지정 하는 속성입니다. 이 옵션을 사용 하면 둘 이상의 행을 차지 하는 테이블의 셀을 만들 수 있습니다. 예를 들어 두 개의 열과 두 개의 행을 포함 하는 테이블이 있다고 가정 합니다. 두 행을 하는 열을 만들 수 있습니다. 설정 된 RowSpan 첫 번째 열의 왼쪽에 있는 셀의 속성 2
테이블의 두 행 차지이 셀을 나타내기 위해.
주의
행에 걸쳐 각 행의 해당 열에서 하나 적은 셀을 정의 해야 합니다. 예를 들어 두 행에 걸쳐 있는 경우 해당 열에는 하나 적은 셀을 정의 합니다. 이 고, 그렇지 열 테이블의 행 개수 보다 길어집니다 및 테이블 예상 대로 표시 되지 않습니다.