Objet ThisComponent

ThisComponent represents the current document in Basic macros. It addresses the active component whose properties can be read and set, and whose methods can be called. Properties and methods available through ThisComponent depend on the document type.

Syntaxe :


  ThisComponent

When the active window is a Base form, query, report, table or view, ThisComponent returns the current Form information.

tip

When active window is the Basic IDE, ThisComponent object returns the component owning the current script.


Exemple :


Sub Main
' actualiser la "Table des matières" dans un document texte
Dim allindexes, index As Object
    allindexes = ThisComponent.getDocumentIndexes()
    index = allindexes.getByName("Table des matières1")
    ' utiliser le nom par défaut de Table des matières et le 1
    index.update()
End Sub