System.Web.UI.HtmlControls Namespace HtmlTableCellCollection Class
Copies the items from the HtmlTableRow.Cells collection to an array.
[ VB ]
NotOverridable Public Sub CopyTo ( _
ByVal array As Array, _
ByVal index As Integer _
)
[ C# ]
public void CopyTo (
Array array,
int index
);
[ C++ ]
public: __sealed void CopyTo (
Array* array,
int index
);
[ JScript ]
public function CopyTo (
array : Array,
index : int
);
- array
- A zero-based Array that receives the copied items from the HtmlTableCellCollection.
- index
- The first index in the specified array to receive the items.
Use this method to copy the contents of the HtmlTableCellCollection into the specified System.Array object, starting at the specified index in the array.
NOTE: The array parameter must be a zero-based System.Array object.
HtmlTableCellCollection Members