2.2.5.12 ExcelServerMessageAppearance

Namespace: http://schemas.microsoft.com/office/Excel/Server/WebServices/ExcelServerInternalService/

Specifies a list of enumeration values corresponding to either control buttons or a Message Bar notification, which is associated with an alert that the protocol server returns to the protocol client. The list MUST contain one of the following:

  • OK

  • Notification

  • Both Yes and No

  • Both Notification and OK

     <xs:simpleType name="ExcelServerMessageAppearance" xmlns:xs="http://www.w3.org/2001/XMLSchema">
       <xs:list>
         <xs:simpleType>
           <xs:restriction base="xs:string">
             <xs:enumeration value="None"/>
             <xs:enumeration value="OK"/>
             <xs:enumeration value="Cancel"/>
             <xs:enumeration value="Yes"/>
             <xs:enumeration value="No"/>
             <xs:enumeration value="Notification"/>
           </xs:restriction>
         </xs:simpleType>
       </xs:list>
     </xs:simpleType>
    

The following table specifies the allowable values for the ExcelServerMessageAppearance simple type.

Value

Meaning

None

MUST NOT be used.

OK

An OK control button.

Cancel

MUST NOT be used.

Yes

A Yes control button.

No

A No control button.

Notification

A Message Bar notification.