ThisComponent Object
Addresses the active component whose properties can be read and set, and whose methods can be called. ThisComponent is used in Basic, where it represents the current document. Properties and methods available through ThisComponent depend on the document type.
ThisComponent
Sub Main
' päivitetään "Sisällysluettelo" tekstiasiakirjassa
Dim allindexes, index As Object
allindexes = ThisComponent.getDocumentIndexes()
index = allindexes.getByName("Sisällysluettelo1")
' käytä oletusnimeä sisällysluettelolle ja 1:tä
index.update()
End Sub