Document
ListCollection.Document property
Получает документ владельца.
public DocumentBase Document { get; }
Примеры
Показывает, как проверить свойства документов владельцев списков.
Document doc = new Document();
ListCollection lists = doc.Lists;
Assert.AreEqual(doc, lists.Document);
List list = lists.Add(ListTemplate.BulletDefault);
Assert.AreEqual(doc, list.Document);
Console.WriteLine("Current list count: " + lists.Count);
Console.WriteLine("Is the first document list: " + (lists[0].Equals(list)));
Console.WriteLine("ListId: " + list.ListId);
Console.WriteLine("List is the same by ListId: " + (lists.GetListByListId(1).Equals(list)));
Смотрите также
- class DocumentBase
- class ListCollection
- пространство имен Aspose.Words.Lists
- сборка Aspose.Words