The requestOpen element is used to open an event notification message on the client computer.
The requestOpen element is defined in the asyncui namespace at this URI:
https://schemas.microsoft.com/2003/print/asyncui/v1/request
このリソースは、一部の言語や国では利用できない場合があります。
Usage
<requestOpen>
child elements
</requestOpen>
Attributes
属性はありません。
Child elements
| Element | Description |
|---|---|
| balloonUI | クライアント コンピューターにメッセージ バルーンを表示するために使用される省略可能な要素。 |
| customUI | クライアント コンピューターに表示するカスタム ユーザー インターフェイスを指定する省略可能な要素。 |
| messageBoxUI | クライアント コンピューターにメッセージ ボックスを表示するために使用される省略可能な要素。 |
Parent elements
| Element | Description |
|---|---|
| asyncPrintUIRequest | クライアント コンピューターでメッセージを作成するためにプリンター ドライバーによって発行された要求を記述する必須の要素。 |
Examples
次のコード例では、イベント通知メッセージを開きます。
<?xml version="1.0" ?>
<asyncPrintUIRequest
xmlns="https://schemas.microsoft.com/2003/print/asyncui/v1/request">
<v1>
<requestOpen>
<balloonUI iconID="1" resourceDll="IHV.dll">
<title stringID="1234" resourceDll="IHV.dll" />
<body stringID="100" resourceDll="IHV.dll">
<parameter stringID="5" />
<parameter stringID="1002" resourceDll="IHV.dll" />
</body>
</balloonUI>
</requestOpen>
</v1>
</asyncPrintUIRequest>