다음을 통해 공유


List.ListItems 속성

정의

ListItemCollection의 콘텐츠를 구성하는 ListItem 요소가 포함된 List을 가져옵니다.

public:
 property System::Windows::Documents::ListItemCollection ^ ListItems { System::Windows::Documents::ListItemCollection ^ get(); };
public System.Windows.Documents.ListItemCollection ListItems { get; }
member this.ListItems : System.Windows.Documents.ListItemCollection
Public ReadOnly Property ListItems As ListItemCollection

속성 값

ListItemCollection

ListItemCollection의 콘텐츠를 구성하는 ListItem 요소가 포함된 List입니다.

이 속성에는 기본값이 없습니다.

예제

다음 예제에서 일반적인 작업을 수행 하는 방법을 보여 줍니다는 List 를 사용 하는 ListItems 속성입니다.

// Add ListItems to the List.
List listx = new List();
Span spanx = new Span();
listx.ListItems.Add(new ListItem(new Paragraph(new Run("A bit of text content..."))));
listx.ListItems.Add(new ListItem(new Paragraph(new Run("A bit more text content..."))));

// Insert a ListItem at the begining of the List.
ListItem lix = new ListItem(new Paragraph(new Run("ListItem to insert...")));
listx.ListItems.InsertBefore(listx.ListItems.FirstListItem, lix);

// Get the number of ListItems in the List.
int countListItems = listx.ListItems.Count;

// Remove the last ListItem from the List.
listx.ListItems.Remove(listx.ListItems.LastListItem);

// Clear all of the ListItems from the List.
listx.ListItems.Clear();
' Add ListItems to the List.
Dim listx As New List()
Dim spanx As New Span()
listx.ListItems.Add(New ListItem(New Paragraph(New Run("A bit of text content..."))))
listx.ListItems.Add(New ListItem(New Paragraph(New Run("A bit more text content..."))))

' Insert a ListItem at the begining of the List.
Dim lix As New ListItem(New Paragraph(New Run("ListItem to insert...")))
listx.ListItems.InsertBefore(listx.ListItems.FirstListItem, lix)

' Get the number of ListItems in the List.
Dim countListItems As Integer = listx.ListItems.Count

' Remove the last ListItem from the List.
listx.ListItems.Remove(listx.ListItems.LastListItem)

' Clear all of the ListItems from the List.
listx.ListItems.Clear()

설명

사용 하 여는 ListItemCollection 를 열거 하거나의 콘텐츠를 조작 하려면이 속성에서 반환 되는 List 요소입니다.

적용 대상