ListItemCollection.CopyTo メソッド
アセンブリ: System.Web (system.web.dll 内)

Dim instance As ListItemCollection Dim array As Array Dim index As Integer instance.CopyTo(array, index)


' Copy the items in the ListListBox1.Items to an array before ' deleting them. Dim myListItemArray(ListBox1.Items.Count - 1) As ListItem ListBox1.Items.CopyTo(myListItemArray, 0) ' Delete all the items from the ListBox. ListBox1.Items.Clear() DeleteLabel.Text = "<b>All items in the ListBox were deleted successfully." & _ "</b><br><b>The deleted items are:" Dim listResults As [String] = "" Dim myItem2 As ListItem For Each myItem2 In myListItemArray listResults = listResults & myItem2.Text & "<br>" Next myItem2 ResultsLabel.Text = listResults
// Copy the items in the ListItemCollection to an array before // deleting them. ListItem[] myListItemArray = new ListItem[ListBox1.Items.Count]; ListBox1.Items.CopyTo(myListItemArray, 0); // Delete all the items from the ListBox. ListBox1.Items.Clear(); DeleteLabel.Text = "<b>All items in the ListBox were deleted successfully." + "</b><br><b>The deleted items are:"; String listResults=""; foreach(ListItem myItem in myListItemArray) { listResults = listResults + myItem.Text + "<br>"; } ResultsLabel.Text = listResults;

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に収録されているすべての辞書からListItemCollection.CopyTo メソッドを検索する場合は、下記のリンクをクリックしてください。

- ListItemCollection.CopyTo メソッドのページへのリンク