Table.GridLines プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
Table コントロールに表示するグリッド線スタイルを取得または設定します。
public:
virtual property System::Web::UI::WebControls::GridLines GridLines { System::Web::UI::WebControls::GridLines get(); void set(System::Web::UI::WebControls::GridLines value); };
[System.ComponentModel.Bindable(true)]
public virtual System.Web.UI.WebControls.GridLines GridLines { get; set; }
public virtual System.Web.UI.WebControls.GridLines GridLines { get; set; }
[<System.ComponentModel.Bindable(true)>]
member this.GridLines : System.Web.UI.WebControls.GridLines with get, set
member this.GridLines : System.Web.UI.WebControls.GridLines with get, set
Public Overridable Property GridLines As GridLines
プロパティ値
GridLines 列挙値のいずれか。 既定値は None
です。
- 属性
例
次の例では、 プロパティを使用 GridLines してグリッド線のスタイルを指定する方法を示します。
注意
次のコード サンプルでは、単一ファイルコード モデルを使用しており、分離コード ファイルに直接コピーすると正しく動作しない場合があります。 このコード サンプルは、.aspx拡張子を持つ空のテキスト ファイルにコピーする必要があります。 Web フォーム コード モデルの詳細については、「ASP.NET Web フォーム ページ コード モデル」を参照してください。
<%@ 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">
private void Page_Load(Object sender, EventArgs e)
{
// Generate rows and cells.
int numrows = 5;
int numcells = 4;
for(int j=0; j<=numrows - 1; j++)
{
TableRow rw = new TableRow();
for(int i=0; i <= numcells - 1; i++)
{
TableCell cel = new TableCell();
cel.Controls.Add(new LiteralControl(
String.Format("row {0}, cell {1}", j, i)));
rw.Cells.Add(cel);
}
Table1.Rows.Add(rw);
}
}
private void Button_Click(Object sender, EventArgs e)
{
Table1.GridLines = (GridLines)DropDown1.SelectedIndex;
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h3>Table GridLines Example</h3>
<asp:Table id="Table1"
BorderColor="black"
BorderWidth="1"
GridLines="Both"
runat="server" />
<br />GridLines:
<asp:DropDownList id="DropDown1" runat="server">
<asp:ListItem Value="0">None</asp:ListItem>
<asp:ListItem Value="1">Horizontal</asp:ListItem>
<asp:ListItem Value="2">Vertical</asp:ListItem>
<asp:ListItem Value="3">Both</asp:ListItem>
</asp:DropDownList><br />
<asp:button id="Button1"
Text="Display Table"
OnClick="Button_Click"
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">
Private Sub Page_Load(sender As Object, e As EventArgs)
' Generate rows and cells.
Dim numrows As Integer = 5
Dim numcells As Integer = 4
Dim i As Integer
Dim j As Integer
For j = 0 to numrows - 1
Dim r As TableRow = new TableRow()
For i = 0 to numcells - 1
Dim c As TableCell = new TableCell()
c.Controls.Add(New LiteralControl("row " & j.ToString() & _
", cell " & i.ToString()))
r.Cells.Add(c)
Next ' i
Table1.Rows.Add(r)
Next ' j
End Sub
Private Sub Button_Click(sender As Object, e As EventArgs)
Table1.GridLines = CType(DropDown1.SelectedIndex, GridLines)
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Untitled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
<h3>Table GridLines Example</h3>
<asp:Table id="Table1"
BorderColor="black"
BorderWidth="1"
GridLines="Both"
runat="server" />
<br />GridLines:
<asp:DropDownList id="DropDown1" runat="server">
<asp:ListItem Value="0">None</asp:ListItem>
<asp:ListItem Value="1">Horizontal</asp:ListItem>
<asp:ListItem Value="2">Vertical</asp:ListItem>
<asp:ListItem Value="3">Both</asp:ListItem>
</asp:DropDownList><br />
<asp:button id="Button1"
Text="Display Table"
OnClick="Button_Click"
runat="server" />
</div>
</form>
</body>
</html>
注釈
コントロールに GridLines 表示するセルの罫線を指定するには、 プロパティを Table 使用します。 次の表に、さまざまなグリッド線のスタイルを示します。
GridLine 値 | [説明] |
---|---|
None |
セルの罫線は表示されません。 |
Horizontal |
水平セルの罫線のみが表示されます。 |
Vertical |
垂直セルの罫線のみが表示されます。 |
Both |
水平方向と垂直方向の両方のセル罫線が表示されます。 |
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET