Instrukcja ThisComponent

Adresuje aktywny składnik w celu odczytu i ustawienia jego właściwości.

Składnia:


ThisComponent

Przykład:


Sub Main
' aktualizuje "Spis treści" w dokumencie tekstowym
Dim allindexes, index As Object
    allindexes = ThisComponent.getDocumentIndexes()
    index = allindexes.getByName("Table of Contents1")
    ' użyta domyślna nazwa spisu treści (Table of Contents) i cyfra 1
    index.update()
End Sub