HtmlTableCellCollection.CopyTo(Array, Int32) Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Копирует элементы из коллекции HtmlTableCellCollection в указанный массив Array, начиная с указанного индекса в массиве Array.
public:
virtual void CopyTo(Array ^ array, int index);
public void CopyTo (Array array, int index);
abstract member CopyTo : Array * int -> unit
override this.CopyTo : Array * int -> unit
Public Sub CopyTo (array As Array, index As Integer)
Параметры
- array
- Array
Отсчитываемый от нуля класс Array, который получает элементы, скопированные из HtmlTableCellCollection.
Реализации
Примеры
В следующем примере кода показано, как использовать CopyTo метод для создания массива, содержащего то же содержимое, что HtmlTableCellCollection и коллекция. Затем массив выполняет итерацию для отображения содержимого HtmlTableCellCollection коллекции.
<%@ 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">
<script runat="server">
void Button_Click(Object sender, EventArgs e)
{
HtmlTableCell[] myCellArray = new HtmlTableCell[2];
// Copy the collection to an array.
Table1.Rows[0].Cells.CopyTo(myCellArray, 0);
Span1.InnerText = "The copied items from the selected row are: ";
// Iterate through the array and display its contents.
foreach (HtmlTableCell cell in myCellArray)
{
Span1.InnerText = Span1.InnerText + " " + cell.InnerText;
}
}
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>HtmlTableCellCollection Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>HtmlTableCellCollection Example</h3>
<table id="Table1"
style="border-width:1; border-color:Black"
runat="server">
<tr>
<td>
Cell 1
</td>
<td>
Cell 2
</td>
</tr>
<tr>
<td>
Cell 3
</td>
<td>
Cell 4
</td>
</tr>
</table>
<br /><br />
<input type="button"
value="Display the contents of the first row"
onserverclick="Button_Click"
runat="server"/>
<br /><br />
<span id="Span1"
runat="server"/>
</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">
<script runat="server">
Sub Button_Click(ByVal sender As Object, ByVal e As EventArgs)
Dim myCellArray(1) As HtmlTableCell
Dim cell As HtmlTableCell
' Copy the collection to an array.
Table1.Rows(0).Cells.CopyTo(myCellArray, 0)
Span1.InnerText = "The copied items from the selected row are: "
' Iterate through the array and display its contents.
For Each cell In myCellArray
Span1.InnerText = Span1.InnerText & " " & cell.InnerText
Next cell
End Sub
</script>
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
<title>HtmlTableCellCollection Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>HtmlTableCellCollection Example</h3>
<table id="Table1"
style="border-width:1; border-color:Black"
runat="server">
<tr>
<td>
Cell 1
</td>
<td>
Cell 2
</td>
</tr>
<tr>
<td>
Cell 3
</td>
<td>
Cell 4
</td>
</tr>
</table>
<br /><br />
<input type="button"
value="Display the contents of the first row"
onserverclick="Button_Click"
runat="server"/>
<br /><br />
<span id="Span1"
runat="server"/>
</form>
</body>
</html>
Комментарии
Используйте этот метод для копирования содержимого HtmlTableCellCollection коллекции в указанный System.Array, начиная с указанного индекса массива.
Примечание
Параметр array
должен быть отсчитываться от System.Arrayнуля.