2.2.7.1.1 asyncPrintUIRequest Element

The asyncPrintUIRequest XML element MUST be the root element of XML documents used in the AsyncUIBalloon (section 2.2.7.2), AsyncUIMessageBox (section 2.2.7.3), AsyncUICustomUI (section 2.2.7.5), and AsyncUICustomData (section 2.2.7.7) server-to-client notification formats.

The document markup MUST be schema-valid according to the following XML schema, which refers to additional schema fragments (section 2.2.7). Schema-Validity Assessment of the document's root element MUST result in a value of "valid" for the [validity] property ([XMLSCHEMA1/2] section 3.3.5).

 <xs:element name="asyncPrintUIRequest">
   <xs:complexType>
     <xs:sequence>
       <xs:element name="v1">
         <xs:complexType>
           <xs:sequence>
             <xs:element name="requestOpen">
               <xs:complexType>
                 <xs:choice>
                   <xs:element
                     ref="balloonUI"
                    />
                   <xs:element
                     ref="messageBoxUI"
                    />
                   <xs:element
                     ref="customUI"
                    />
                   <xs:element
                     ref="customData"
                    />
                 </xs:choice>
               </xs:complexType>
             </xs:element>
           </xs:sequence>
         </xs:complexType>
       </xs:element>
     </xs:sequence>
   </xs:complexType>
 </xs:element>

Child Elements

Element

Type

Description

v1

N/A

A required element within an asyncPrintUIRequest element that MUST contain exactly one requestOpen element.

requestOpen

N/A

A required element that MUST contain exactly one balloonUI, messageBoxUI, customUI, or customData element.

balloonUI

balloonUI

 See section 2.2.7.2.2.

messageBoxUI

messageBoxUI

 See section 2.2.7.3.4.

customUI

customUI

 See section 2.2.7.5.1.

customData

customData

 See section 2.2.7.7.1.