LibreOffice 7.1 Súgó
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
' frissíti a „Table of Contents” (tartalomjegyzék) elemet egy szöveges dokumentumban
Dim allindexes, index As Object
allindexes = ThisComponent.getDocumentIndexes()
index = allindexes.getByName("Table of Contents1")
' használja a Table of Contents alapértelmezett nevét és utána egy 1 -est
index.update()
End Sub