Word.RequestContext class
RequestContext オブジェクトは、Word アプリケーションへの要求を容易にします。 Office アドインとWord アプリケーションは 2 つの異なるプロセスで実行されるため、アドインからWord オブジェクト モデルにアクセスするには、要求コンテキストが必要です。
- Extends
注釈
例
// *.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...
});
コンストラクター
(constructor)(url) |
|
プロパティ
application | [ API set: WordApi 1.3 ] * |
document |
コンストラクターの詳細
(constructor)(url)
RequestContext
クラスの新しいインスタンスを構築します
constructor(url?: string);
パラメーター
- url
-
string
プロパティの詳細
application
document
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Office Add-ins