document property

List.document property

Gets the owner document.

@property
def document(self) -> aspose.words.DocumentBase:
    ...

Remarks

A list always has a parent document and is valid only in the context of that document.

Examples

Shows how to verify owner document properties of lists.

doc = aw.Document()
lists = doc.lists
self.assertEqual(doc, lists.document)
list = lists.add(aw.lists.ListTemplate.BULLET_DEFAULT)
self.assertEqual(doc, list.document)
print('Current list count:', lists.count)
print('Is the first document list:', lists[0] is list)
print('List id:', list.list_id)
print('List is the same by list_id:', lists.get_list_by_list_id(1) is list)

See Also