ListItemCollection.Clear 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
컬렉션에서 모든 ListItem 개체를 제거합니다.
public:
virtual void Clear();
public void Clear ();
abstract member Clear : unit -> unit
override this.Clear : unit -> unit
Public Sub Clear ()
구현
예제
// 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;
' 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
설명
메서드를 Clear 사용하여 모든 ListItem 개체를 제거합니다. 속성도 Count .로 설정됩니다 0
.
주의
이 메서드를 사용하면 컬렉션에서 모든 ListItem 개체가 제거됩니다. 이 작업은 실행 취소할 수 없습니다.