<cmAuthor> (Comment Author)

This element specifies a single author with comments in the document. It contains a unique author ID, the author's name and initials, the index of the author's last comment, and the index of a color associated with the author.

example:
<p:cmAuthor id="0" name="Julie Lee" initials="JL" lastIdx="1" clrIdx="0"/>

Parent Elements

<cmAuthorLst>4.5.3)

Child Elements

Subclause

<extLst> (Extension List)

§4.2.5

Attributes

Description

<clrIdx> (Comment Author Color Index)

This attribute specifies an index into the generating application's comments color table to allow for visual (color) differentiation of different author's comments. This color is used for all comments by this author. If more authors exist than there are entries in the color table, the color index wraps around to the beginning of the table.

Note:

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

<id> (Comment Author ID)

This attribute specifies a unique (within the document) zero-based identifier that refers to a single comment author.

Note:

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

<initials> (Comment Author Initials)

This attribute specifies a string that represents the initials of this particular author. The value is not necessarily unique. It is intended for use by the application as an abbreviated version of the comment author's name.

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

<lastIdx> (Index of Comment Author's last comment)

Index of the last comment added to this document by this author. New comments by this author are counted starting with the value one greater than this index.

Note:

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

<name> (Comment Author Name)

This attribute specifies the full name of this particular author. As a string, it has no security or authentication data. This value is not guaranteed to be unique across all document authors.

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

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

<complexType name="CT_CommentAuthor">
	<sequence>
	<element name="extLst" type="CT_ExtensionList" minOccurs="0" maxOccurs="1"/>
	</sequence>
	<attribute name="id" type="xsd:unsignedInt" use="required"/>
	<attribute name="name" type="ST_Name" use="required"/>
	<attribute name="initials" type="ST_Name" use="required"/>
	<attribute name="lastIdx" type="xsd:unsignedInt" use="required"/>
	<attribute name="clrIdx" type="xsd:unsignedInt" use="required"/>
</complexType>