Vertaling van "ThisDocument" in Duits
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
The procedure can be stored in the ThisDocument class module of a document or its attached template.
Die Prozedur kann im ThisDocument -Klassenmodul eines Dokuments oder der damit verknüpften Vorlage gespeichert werden.
If you want to manipulate the document associated with your VBA project, use the ThisDocument object.
Wenn Sie das dem VBA-Projekt zugeordnete Dokument ändern möchten, verwenden Sie das ThisDocument -Objekt.
When the ThisDocument object is referenced from code in a project, it returns a reference to the project's Document object.
Wenn Code in einem Projekt auf das ThisDocument -Objekt verweist, wird ein Verweis auf das Document -Objekt des Projekts zurückgegeben.
The ThisDocument object is not available to code that is not part of the VBA project of a Visio document.
Das ThisDocument -Objekt steht nicht für Code zur Verfügung, der nicht Bestandteil des VBA-Projekts eines Visio-Dokuments ist.
How to: Handle events fired by the ThisDocument object
Vorgehensweise: Handhaben von Ereignissen, die vom ThisDocument -Objekt ausgelöst wurden
The ActiveDocument property often, but not necessarily, returns a reference to the same document as the ThisDocument object.
Die ActiveDocument -Eigenschaft gibt häufig, aber nicht unbedingt einen Verweis auf das gleiche Dokument zurück wie das ThisDocument -Objekt.
Whether your code uses the ActiveDocument or ThisDocument object depends on the purpose of your program.
Ob im Code das ActiveDocument - oder das ThisDocument -Objekt verwendet wird, hängt vom Zweck des Programms ab.
This example uses a ThisDocument reference instead of ActiveDocument.
Dieses Beispiel verwendet einen ThisDocument -Verweis an Stelle von ActiveDocument.
To sink the CellChanged event from a Document object (and the ThisDocument object in a VBA project), you must use the AddAdvise method.
Verwenden Sie zum Auffangen des CellChanged -Ereignisses von einem Document -Objekt (und vom ThisDocument -Objekt in einem VBA-Projekt) die AddAdvise -Methode.
For performance considerations, the Document object's event set does not include the ConnectionsAdded event. To sink the ConnectionsAdded event from a Document object (and the ThisDocument object in a VBA project), you must use the AddAdvise method.
Die Ereignisgruppe des Document -Objekts schließt das ConnectionsAdded -Ereignis aus Leistungsgründen nicht ein. Verwenden Sie zum Auffangen des ConnectionsAdded -Ereignisses von einem Document -Objekt (und vom ThisDocument -Objekt in einem VBA-Projekt) die AddAdvise -Methode.
If your code is in the Microsoft Visual Basic project of a Visio document, the ActiveDocument property often, but not necessarily, returns a reference to the ThisDocument object, a class module in the Visual Basic project of every Microsoft Office Visio document.
Wenn sich der Code im Microsoft Visual Basic-Projekt eines Visio-Dokuments befindet, gibt die ActiveDocument -Eigenschaft oftmals, jedoch nicht immer, einen Verweis auf das ThisDocument -Objekt zurück, ein Klassenmodul im Visual Basic-Projekt aller Microsoft Office Visio-Dokumente.
Paste this example code into the ThisDocument object and then run the UseMarker procedure. The output will be displayed in the Microsoft Visual Basic for Applications (VBA) Immediate window.
Fügen Sie diesen Beispielcode in das ThisDocument -Objekt ein, und führen Sie dann die UseMarker -Prozedur aus. Die Ausgabe wird im Direktfenster von Microsoft Visual Basic für Applikationen (VBA) angezeigt.
The procedure can be stored in the ThisDocument module of a publication.