Freigeben über


Word.RequestContext class

Das RequestContext-Objekt erleichtert Anforderungen an die Word-Anwendung. Da das Office-Add-In und die Word-Anwendung in zwei verschiedenen Prozessen ausgeführt werden, ist der Anforderungskontext erforderlich, um über das Add-In Zugriff auf das Word-Objektmodell zu erhalten.

Extends

Hinweise

Beispiele

// *.run methods automatically create an OfficeExtension.ClientRequestContext
// object to work with the Office file.
await Word.run(async (context: Word.RequestContext) => {
  const document = context.document;
  // Interact with the Word document...
});

Konstruktoren

(constructor)(url)

Erstellt eine neue Instanz der RequestContext -Klasse

Eigenschaften

application

[ API-Satz: WordApi 1.3 ] *

document

Details zum Konstruktor

(constructor)(url)

Erstellt eine neue Instanz der RequestContext -Klasse

constructor(url?: string);

Parameter

url

string

Details zur Eigenschaft

application

[ API-Satz: WordApi 1.3 ] *

readonly application: Application;

Eigenschaftswert

document

readonly document: Document;

Eigenschaftswert