HtmlTableCell.BorderColor プロパティ
アセンブリ: System.Web (system.web.dll 内)

Dim instance As HtmlTableCell Dim value As String value = instance.BorderColor instance.BorderColor = value
/** @property */ public String get_BorderColor () /** @property */ public void set_BorderColor (String value)
HtmlTableCell のインスタンスが表すセルの境界線の色。

BorderColor プロパティを使用して、HtmlTableCell クラスのインスタンスが表すセルの境界線の色を指定します。色は、名前で指定するか、16 進値の前にシャープ記号 (#) を付けて #RRGGBB の形式で指定することができます。RR、GG、および BB はそれぞれ、色の赤、緑、および青の各要素を示す 0 ~ 255 の範囲の 16 進値を表します。たとえば、#0000FF という値は青を表します。この場合は、赤と緑の要素に最小値 (00) を指定し、青の要素に最大値 (FF) を指定しています。
BorderColor プロパティに使用できる定義済みの 16 種類の HTML カラー名と、対応する 16 進値を次の表に示します。HTML カラーの詳細については、「World Wide Web Consortium (W3C) Web」を参照してください。
カラー名 | 16 進値 |
---|---|
#00FFFF | |
黒 | #000000 |
青 | #0000FF |
#FF00FF | |
#808080 | |
緑 | #008000 |
#00FF00 | |
#800000 | |
濃い青 | #000080 |
#808000 | |
紫 | #800080 |
赤 | #FF0000 |
#C0C0C0 | |
#008080 | |
白 | #FFFFFF |
黄 | #FFFF00 |

BorderColor プロパティを使用して、HtmlTable コントロールのセルの境界線の色をプログラムで制御するコード例を次に示します。
<%@ Page Language="VB" AutoEventWireup="True" %> <script runat="server"> Sub Button_Click(ByVal sender As Object, ByVal e As EventArgs) Dim i As Integer Dim j As Integer ' Iterate through the rows of the table. For i = 0 To Table1.Rows.Count - 1 ' Iterate through the cells of a row. For j = 0 To Table1.Rows(i).Cells.Count - 1 ' Update the properties of each cell. Table1.Rows(i).Cells(j).BgColor = BgColorSelect.Value Table1.Rows(i).Cells(j).BorderColor = BorderColorSelect.Value Table1.Rows(i).Cells(j).Height = HeightSelect.Value Table1.Rows(i).Cells(j).Width = WidthSelect.Value Next j Next i End Sub </script> <html> <head> <title>HtmlTableCell Example</title> </head> <body> <form runat="server"> <h3>HtmlTableCell Example</h3> <table id="Table1" border="1" bordercolor="black" runat="server"> <tr> <td> Cell 1. </td> <td> Cell 2. </td> </tr> <tr> <td> Cell 3. </td> <td> Cell 4. </td> </tr> </table> <hr> Select the display settings for the cells in the table: <br><br> BgColor: <select id="BgColorSelect" runat="server"> <option value="Red">Red</option> <option value="Blue">Blue</option> <option value="Green">Green</option> <option value="Black">Black</option> <option value="White" selected>White</option> </select> BorderColor: <select id="BorderColorSelect" runat="server"> <option value="Red">Red</option> <option value="Blue">Blue</option> <option value="Green">Green</option> <option value="Black" selected>Black</option> <option value="White">White</option> </select> <br><br> Height: <select id="HeightSelect" runat="server"> <option value="0">0</option> <option value="100">100</option> <option value="150">150</option> <option value="200">200</option> <option value="250">250</option> </select> Width: <select id="WidthSelect" runat="server"> <option value="0">0</option> <option value="200">200</option> <option value="250">250</option> <option value="300">300</option> <option value="350">350</option> </select> <br><br> <input type="button" value="Generate Table" onserverclick="Button_Click" runat="server"/> </form> </body> </html>
<%@ Page Language="C#" AutoEventWireup="True" %> <script runat="server"> void Button_Click(Object sender, EventArgs e) { // Iterate through the rows of the table. for (int i = 0; i <= Table1.Rows.Count - 1; i++) { // Iterate through the cells of a row. for (int j = 0; j <= Table1.Rows[i].Cells.Count - 1; j++) { // Update the properties of each cell. Table1.Rows[i].Cells[j].BgColor = BgColorSelect.Value; Table1.Rows[i].Cells[j].BorderColor = BorderColorSelect.Value; Table1.Rows[i].Cells[j].Height = HeightSelect.Value; Table1.Rows[i].Cells[j].Width = WidthSelect.Value; } } } </script> <html> <head> <title>HtmlTableCell Example</title> </head> <body> <form runat="server"> <h3>HtmlTableCell Example</h3> <table id="Table1" border="1" bordercolor="black" runat="server"> <tr> <td> Cell 1. </td> <td> Cell 2. </td> </tr> <tr> <td> Cell 3. </td> <td> Cell 4. </td> </tr> </table> <hr> Select the display settings for the cells in the table: <br><br> BgColor: <select id="BgColorSelect" runat="server"> <option value="Red">Red</option> <option value="Blue">Blue</option> <option value="Green">Green</option> <option value="Black">Black</option> <option value="White" selected>White</option> </select> BorderColor: <select id="BorderColorSelect" runat="server"> <option value="Red">Red</option> <option value="Blue">Blue</option> <option value="Green">Green</option> <option value="Black" selected>Black</option> <option value="White">White</option> </select> <br><br> Height: <select id="HeightSelect" runat="server"> <option value="0">0</option> <option value="100">100</option> <option value="150">150</option> <option value="200">200</option> <option value="250">250</option> </select> Width: <select id="WidthSelect" runat="server"> <option value="0">0</option> <option value="200">200</option> <option value="250">250</option> <option value="300">300</option> <option value="350">350</option> </select> <br><br> <input type="button" value="Generate Table" onserverclick="Button_Click" runat="server"/> </form> </body> </html>

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からHtmlTableCell.BorderColor プロパティを検索する場合は、下記のリンクをクリックしてください。

- HtmlTableCell.BorderColor プロパティのページへのリンク