<webPublishObject> (Web Publishing Object)

This element defines a single Web publishing object for the workbook. This element tracks basic information about an object in the workbook, such as a named range, that is published to the Web.

Parent Elements

<webPublishObjects>3.2.26)

Attributes

Description

<autoRepublish> (Auto Republish)

Specifies a boolean value that indicates whether the object specified in sourceObject will be automatically published every time the workbook is saved.

A value of on, 1, or true indicates the application will publish the sourceObject when the workbook is saved.

A value of off, 0, or false indicates the application will not publish the sourceObject when the workbook is saved.

The possible values for this attribute are defined by the XML Schema boolean datatype.

<destinationFile> (Destination File)

Specifies the destination file name to which the sourceObject will be published.

The possible values for this attribute are defined by the ST_Xstring simple type (§3.18.96).

<divId> (Div Id)

Specifies the destination bookmark (div id) for the published object.

The possible values for this attribute are defined by the ST_Xstring simple type (§3.18.96).

<id> (Id)

Specifies the number, in "nnnnn" format, used in generated div id, in style id's, token filenames, and other variables.

The possible values for this attribute are defined by the XML Schema unsignedInt datatype.

<sourceObject> (Source Object)

Specifies the named range to be published. If omitted, the entire workbook is published.

The possible values for this attribute are defined by the ST_Xstring simple type (§3.18.96).

<title> (Title)

Specifies the title of the published item.

The possible values for this attribute are defined by the ST_Xstring simple type (§3.18.96).

The following XML Schema fragment defines the contents of this element:

<complexType name="CT_WebPublishObject">
	<attribute name="id" type="xsd:unsignedInt" use="required"/>
	<attribute name="divId" type="ST_Xstring" use="required"/>
	<attribute name="sourceObject" type="ST_Xstring" use="optional"/>
	<attribute name="destinationFile" type="ST_Xstring" use="required"/>
	<attribute name="title" type="ST_Xstring" use="optional"/>
	<attribute name="autoRepublish" type="xsd:boolean" use="optional" default="false"/>
</complexType>