docx
    Preparing search index...

    Class Comment

    Represents a single comment in a WordprocessingML document.

    Contains the actual content of a comment, including author information and the comment text (typically paragraphs).

    Reference: http://officeopenxml.com/WPrun.php

    <xsd:complexType name="CT_Comment">
    <xsd:sequence>
    <xsd:group ref="EG_BlockLevelElts" minOccurs="0" maxOccurs="unbounded"/>
    </xsd:sequence>
    <xsd:attribute name="initials" type="s:ST_String"/>
    <xsd:attribute name="author" type="s:ST_String"/>
    <xsd:attribute name="date" type="s:ST_DateTime"/>
    <xsd:attribute name="id" type="ST_DecimalNumber" use="required"/>
    </xsd:complexType>
    new Comment({
    id: 0,
    author: "John Doe",
    initials: "JD",
    children: [new Paragraph("This is a comment")],
    });

    Hierarchy (View Summary)

    Index

    Constructors

    Methods