<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Infragistics4.WebUI.Documents.IO.v12.2</name>
    </assembly>
    <members>
        <member name="T:Infragistics.Documents.Core.Packaging.IPackageFactory">
            <summary>
            Factory class used to create an IPackage given a stream and a FileMode
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Core.Packaging.IPackageFactory.Open(System.IO.Stream,System.IO.FileMode)">
            <summary>
            Opens an IPackage with a given IO stream and file mode.
            </summary>
            <param name="stream">The IO stream on which to open the IPackage.</param>
            <param name="packageMode">The file mode in which to open the IPackage.</param>
            <returns>The opened IPackage.</returns>
        </member>
        <member name="T:Infragistics.Documents.Core.Packaging.IPackage">
            <summary>
            Represents a container that can store multiple data objects.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Core.Packaging.IPackage.CreatePart(System.Uri,System.String)">
            <summary>
            Creates a new uncompressed part with a given URI and content type.
            </summary>
            <param name="partUri">The uniform resource identifier (URI) of the new part.</param>
            <param name="contentType">The content type of the data stream.</param>
            <returns>The new created part.</returns>
        </member>
        <member name="M:Infragistics.Documents.Core.Packaging.IPackage.CreateRelationship(System.Uri,Infragistics.Documents.Core.Packaging.RelationshipTargetMode,System.String,System.String)">
            <summary>
            Creates a package-level relationship to a part with a given URI, target mode, relationship type, and identifier (ID).
            </summary>
            <param name="targetUri">The uniform resource identifier (URI) of the target part.</param>
            <param name="targetMode">Indicates if the target part is System.IO.Packaging.TargetMode.Internal or System.IO.Packaging.TargetMode.External to the package.</param>
            <param name="relationshipType">A URI that uniquely defines the role of the relationship.</param>
            <param name="id">A unique XML identifier.</param>
            <returns>The package-level relationship to the specified part.</returns>
        </member>
        <member name="M:Infragistics.Documents.Core.Packaging.IPackage.GetRelationships">
            <summary>
            Returns a collection of all the package-level relationships.
            </summary>
            <returns>A collection of all the package-level relationships that are contained in the package.</returns>
        </member>
        <member name="M:Infragistics.Documents.Core.Packaging.IPackage.GetPart(System.Uri)">
            <summary>
            Returns the part with a given URI.
            </summary>
            <param name="partUri">The uniform resource identifier (URI) of the part to return.</param>
            <returns>The part with the specified partUri.</returns>        
        </member>
        <member name="M:Infragistics.Documents.Core.Packaging.IPackage.GetParts">
            <summary>
            Returns a collection of all the parts in the package.
            </summary>
            <returns>A collection of all the System.IO.Packaging.PackagePart elements that are contained in the package.</returns>
        </member>
        <member name="M:Infragistics.Documents.Core.Packaging.IPackage.PartExists(System.Uri)">
            <summary>
            Indicates whether a part with a given URI is in the package.
            </summary>
            <param name="partUri">The System.Uri of the part to check for.</param>
            <returns>true if a part with the specified partUri is in the package; otherwise, false.</returns>
        </member>
        <member name="T:Infragistics.Documents.Core.Packaging.IPackagePart">
            <summary>
            Provides a base class for parts stored in a System.IO.Packaging.Package. This class is abstract.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Core.Packaging.IPackagePart.GetStream(System.IO.FileMode,System.IO.FileAccess)">
            <summary>
            Returns the part content stream opened with a specified System.IO.FileMode and System.IO.FileAccess.
            </summary>
            <param name="mode">The I/O mode in which to open the content stream.</param>
            <param name="access">The access permissions to use in opening the content stream.</param>
            <returns>The content stream for the part.</returns>
        </member>
        <member name="M:Infragistics.Documents.Core.Packaging.IPackagePart.CreateRelationship(System.Uri,Infragistics.Documents.Core.Packaging.RelationshipTargetMode,System.String,System.String)">
            <summary>
            Creates a part-level relationship between this IPackagePart to a specified target IPackagePart or external resource.
            </summary>
            <param name="targetUri">The URI of the target part.</param>
            <param name="targetMode">One of the enumeration values. For example, RelationshipTargetMode.Internal if the target part is inside the IPackage; or RelationshipTargetMode.External if the target is a resource outside the IPackage.</param>
            <param name="relationshipType">The role of the relationship.</param>
            <param name="id">A unique ID for the relationship.</param>
            <returns>The part-level relationship between this IPackagePart to the target IPackagePart or external resource.</returns>
        </member>
        <member name="M:Infragistics.Documents.Core.Packaging.IPackagePart.GetRelationships">
            <summary>
            Returns a collection of all the relationships that are owned by this part.
            </summary>
            <returns>A collection of all the relationships that are owned by the part.</returns>
        </member>
        <member name="M:Infragistics.Documents.Core.Packaging.IPackagePart.GetRelationship(System.String)">
            <summary>
            Returns the relationship that has a specified IPackageRelationship.Id.
            </summary>
            <param name="id">The IPackageRelationship.Id of the relationship to return.</param>
            <returns>The relationship that matches the specified id.</returns>
        </member>
        <member name="P:Infragistics.Documents.Core.Packaging.IPackagePart.Package">
            <summary>
            Gets the parent Package of the part.
            </summary>        
        </member>
        <member name="P:Infragistics.Documents.Core.Packaging.IPackagePart.Uri">
            <summary>
            Gets the URI of the part.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Core.Packaging.IPackagePart.ContentType">
            <summary>
             Gets the MIME type of the content stream.        
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Core.Packaging.IPackageRelationship">
            <summary>
            Represents an association between a source IPackage or IPackagePart, and a target object which can be a IPackagePart or external resource.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Core.Packaging.IPackageRelationship.SourceUri">
            <summary>
            Gets the URI of the package or part that owns the relationship.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Core.Packaging.IPackageRelationship.TargetUri">
            <summary>
            Gets the URI of the target resource of the relationship.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Core.Packaging.IPackageRelationship.Id">
            <summary>
            Gets a string that identifies the relationship.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Core.Packaging.IPackageRelationship.RelationshipType">
            <summary>
            Gets the qualified type name of the relationship.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Core.Packaging.IPackageRelationship.TargetMode">
            <summary>
            Gets a value that indicates whether the target of the relationship is RelationshipTargetMode.Internal or RelationshipTargetMode.External to the IPackage.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Core.Packaging.RelationshipTargetMode">
            <summary>
            Specifies whether the target of an IPackageRelationship is inside or outside the IPackage.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Core.Packaging.RelationshipTargetMode.Internal">
            <summary>
            The relationship references a part that is inside the package.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Core.Packaging.RelationshipTargetMode.External">
            <summary>
            The relationship references a resource that is external to the package.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Core.Packaging.PartRelationshipCounter">
            <summary>
            Duplicated from
            Infragistics.Documents.Excel.Serialization.Excel2007.Excel2007WorkbookSerializationManager
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Core.Packaging.ContentTypeSaveHandler">
            <summary>
            Defines the signature of the method called by the static
            CreatePartInPackage method to save data to the content type handler.
            </summary>
            <param name="manager">The serialization manager, e.g., Excel2007WorkbookSerializationManager</param>
            <param name="stream">The stream to which the data is serialized.</param>
            <param name="closeStream">
            Signifies to the caller whether the stream should be closed after
            execution returns. Unless the implementing part supports realtime
            streaming, true should be returned.
            </param>
            <param name="popCounterStack">
            Signifies to the caller whether the partRelationshipsCounter stack
            should be popped after execution returns from the Save method.
            </param>
        </member>
        <member name="T:Infragistics.Documents.Core.Packaging.IContentType">
            <summary>
            Used to decouple the PackageUtilities.CreatePartInPackage method
            from any specific type, for example, so ContentTypeBase-derived classes
            can use it as well as WordContentTypeExporterBase-derived classes.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Core.CommonUtilities.StringPropertyGetHelper(System.String)">
            <summary>
            Returns the specified <paramref name="value"/> if it is not null,
            otherwise returns string.Empty.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Core.ContentTypeBase">
            <summary>
            This class supports the Infragistics infrastructure and
            should not be used by your code.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Core.ContentTypeBase.CreateElement(Infragistics.Documents.Core.OfficeXmlDocument,System.Enum)">
            <summary>
            Creates a new OfficeXmlElement instance from the specified <paramref name="element"/>.
            This method relies on the GetElementName method, so the specified element enum value
            must be handled properly in that method.
            </summary>
            <param name="document">
            The owning OfficeXmlDocument
            </param>
            <param name="element">
            An enum value which corresponds to the local name of an element
            that is recognized by the GetElementName method.
            </param>
            <returns>
            A new OfficeXmlElementinstance.
            </returns>
        </member>
        <member name="M:Infragistics.Documents.Core.ContentTypeBase.CreateAttribute(Infragistics.Documents.Core.OfficeXmlDocument,System.Enum)">
            <summary>
            Creates a new OfficeXmlAttribute instance from the specified <paramref name="attribute"/>.
            This method relies on the GetElementName method, so the specified element enum value
            must be handled properly in that method.
            </summary>
            <param name="document">
            The owning OfficeXmlDocument.
            </param>
            <param name="attribute">
            An enum value which corresponds to the local name of an attribute
            that is recognized by the GetElementName method.
            </param>
            <returns>
            A new OfficeXmlAttribute instance.
            </returns>
        </member>
        <member name="T:Infragistics.Documents.Core.ContentTypeExporterBase">
            <summary>
            This was partially duplicated from
            Infragistics.Documents.Excel.Serialization.Excel2007.ContentTypeBase
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesPartExporter.ContentTypeValue">
            <summary>'application/vnd.openxmlformats-package.core-properties+xml'</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesPartExporter.DefaultPartName">
            <summary>'/docProps/core.xml'</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesPartExporter.RelationshipTypeValue">
            <summary>'http://schemas.openxmlformats.org/package/2006/relationships/metadata/core-properties'</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesPartExporter.CorePropertiesNamespace">
            <summary>'http://schemas.openxmlformats.org/package/2006/metadata/core-properties'</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesPartExporter.DcNamespace">
            <summary>'http://purl.org/dc/elements/1.1'</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesPartExporter.DctermsNamespace">
            <summary>'http://purl.org/dc/terms'</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesPartExporter.XsiNamespace">
            <summary>'http://www.w3.org/2001/XMLSchema-instance'</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesPartExporter.CorePropertiesNamespacePrefix">
            <summary>'cp'</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesPartExporter.DcNamespacePrefix">
            <summary>'dc'</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesPartExporter.DctermsNamespacePrefix">
            <summary>'dcterms'</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesPartExporter.XsiNamespacePrefix">
            <summary>'xsi'</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesPartExporter.XsiTypeAttributeValue">
            <summary>'dcterms:W3CDTF'</summary>
        </member>
        <member name="M:Infragistics.Documents.Core.CorePropertiesPartExporter.GetElementName(System.Enum,System.String@,System.String@,System.String@)">
            <summary>
            Returns the fully qualified name of the XMl element
            corresponding to the specified <paramref name="element"/>,
            which is implied to be of type CorePropertiesElementType.
            The method knows by the enum constant which namespace it
            belongs to, and the local name of the element.
            </summary>
            <returns>The fully qualified name of the XML element.</returns>
        </member>
        <member name="M:Infragistics.Documents.Core.CorePropertiesPartExporter.GetElementNameHelper(System.Enum,System.String@,System.String@,System.String@)">
            <summary>
            Returns the fully qualified name of the XMl element
            corresponding to the specified <paramref name="element"/>,
            which is implied to be of type CorePropertiesElementType.
            The method knows by the enum constant which namespace it
            belongs to, and the local name of the element.
            </summary>
            <returns>The fully qualified name of the XML element.</returns>
        </member>
        <member name="T:Infragistics.Documents.Core.DataType">
            <summary>
            Constants which identify the supported data types.
            Note: Only "native" types are supported here, the
            stuff that is specific to Excel has been stripped
            out.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.String">
            <summary>System.String</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.Short">
            <summary>System.Int16</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.Integer">
            <summary>System.Int32</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.Long">
            <summary>System.Int64</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.Int16">
            <summary>System.Int16</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.Int32">
            <summary>System.Int32</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.Int64">
            <summary>System.Int64</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.Boolean">
            <summary>System.Boolean</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.DateTime">
            <summary>System.DateTime</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.Single">
            <summary>System.Single</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.Float">
            <summary>System.Single</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.Double">
            <summary>System.Double</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.UShort">
            <summary>System.UInt16</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.UInt16">
            <summary>System.UInt16</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.UInt">
            <summary>System.UInt32</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.UInt32">
            <summary>System.UInt32</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.ULong">
            <summary>System.UInt64</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.UInt64">
            <summary>System.UInt64</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.Byte">
            <summary>System.Byte</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.SByte">
            <summary>System.SByte</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.Decimal">
            <summary>System.Decimal</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.DataType.Object">
            <summary>System.Object</summary>
        </member>
        <member name="T:Infragistics.Documents.Core.CorePropertiesElementType">
            <summary>
            Enums whose constant name is the same as the local name
            of the corresponding XML element in /docProps/core.xml.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesElementType.coreProperties">
            <summary>cp:coreProperties</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesElementType.title">
            <summary>dc:title</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesElementType.subject">
            <summary>dc:subject</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesElementType.creator">
            <summary>dc:creator</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesElementType.keywords">
            <summary>cp:keywords</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesElementType.description">
            <summary>dc:description</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesElementType.lastModifiedBy">
            <summary>cp:lastModifiedBy</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesElementType.created">
            <summary>dcterms:created</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesElementType.modified">
            <summary>dcterms:modified</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesElementType.category">
            <summary>cp:category</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesElementType.contentStatus">
            <summary>cp:contentStatus</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.CorePropertiesElementType.type">
            <summary>xsi:type (Attribute)</summary>
        </member>
        <member name="T:Infragistics.Documents.Core.ExtendedPropertiesElementType">
            <summary>
            Enums whose constant name is the same as the local name
            of the corresponding XML element in /docProps/app.xml.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesElementType.Properties">
            <summary>Properties</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesElementType.Template">
            <summary>Template</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesElementType.Application">
            <summary>Application</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesElementType.DocSecurity">
            <summary>DocSecurity</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesElementType.ScaleCrop">
            <summary>DocSecurity</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesElementType.HeadingPairs">
            <summary>HeadingPairs</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesElementType.TitlesOfParts">
            <summary>TitlesOfParts</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesElementType.Company">
            <summary>Company</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesElementType.Manager">
            <summary>Manager</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesElementType.LinksUpToDate">
            <summary>LinksUpToDate</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesElementType.SharedDoc">
            <summary>SharedDoc</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesElementType.HyperlinksChanged">
            <summary>HyperlinksChanged</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesElementType.AppVersion">
            <summary>AppVersion</summary>
        </member>
        <member name="T:Infragistics.Documents.Core.VariantElementType">
            <summary>
            Enums whose constant names correspond to the elements/attributes in the
            http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes
            namespace. Only contains the ones we currently use.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Core.VariantElementType.variant">
            <summary>variant</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.VariantElementType.vector">
            <summary>vector</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.VariantElementType.i4">
            <summary>i4</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.VariantElementType.lpstr">
            <summary>lpstr</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.VariantElementType.size">
            <summary>size (attribute)</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.VariantElementType.baseType">
            <summary>baseType (attribute)</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesPartExporter.ContentTypeValue">
            <summary>'application/vnd.openxmlformats-officedocument.extended-properties+xml'</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesPartExporter.DefaultNamespace">
            <summary>'http://schemas.openxmlformats.org/officeDocument/2006/extended-properties'</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesPartExporter.DefaultPartName">
            <summary>'/docProps/app.xml'</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesPartExporter.RelationshipTypeValue">
            <summary>'http://schemas.openxmlformats.org/officeDocument/2006/relationships/extended-properties'</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesPartExporter.VariantTypesNamespacePrefix">
            <summary>'vt'</summary>
        </member>
        <member name="F:Infragistics.Documents.Core.ExtendedPropertiesPartExporter.VariantTypesNamespace">
            <summary>'http://schemas.openxmlformats.org/officeDocument/2006/docPropsVTypes'</summary>
        </member>
        <member name="M:Infragistics.Documents.Core.ExtendedPropertiesPartExporter.GetElementName(System.Enum,System.String@,System.String@,System.String@)">
            <summary>
            Returns the fully qualified name of the XMl element
            corresponding to the specified <paramref name="element"/>,
            which is implied to be of type ExtendedPropertiesElementType.
            The method knows by the enum constant which namespace it
            belongs to, and the local name of the element.
            </summary>
            <returns>The fully qualified name of the XML element.</returns>
        </member>
        <member name="M:Infragistics.Documents.Core.ExtendedPropertiesPartExporter.GetElementNameHelper(System.Enum,System.String@,System.String@,System.String@)">
            <summary>
            Returns the fully qualified name of the XMl element
            corresponding to the specified <paramref name="element"/>,
            which is implied to be of type ExtendedPropertiesElementType.
            The method knows by the enum constant which namespace it
            belongs to, and the local name of the element.
            </summary>
            <returns>The fully qualified name of the XML element.</returns>
        </member>
        <member name="M:Infragistics.Documents.Core.OfficeDocumentExportManager.SaveDocumentProperties(Infragistics.Documents.Core.OfficeDocumentProperties)">
            <summary>
            Saves the core properties and extended properties.
            Returns true if successful, false otherwise.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Core.OfficeDocumentProperties">
            <summary>
            Encapsulates the properties of an OfficeML-compliant document
            such as author, subject, title, etc.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Core.OfficeDocumentProperties.Reset">
            <summary>
            Restores all properties of this class to their
            respective default values.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Core.OfficeDocumentProperties.Application">
            <summary>
            Returns or sets the name of the consuming application.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Core.OfficeDocumentProperties.Author">
            <summary>
            Returns or sets the author of the document.
            </summary>
            <remarks>
            <p class="body">
            The value of this property is persisted to the core properties section
            of the document as 'creator'.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Core.OfficeDocumentProperties.Category">
            <summary>
            Returns or sets the category of the document.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Core.OfficeDocumentProperties.Comments">
            <summary>
            Returns or sets the comments for the document.
            </summary>
            <remarks>
            <p class="body">
            The value of this property is persisted to the core properties section
            of the document as 'description'.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Core.OfficeDocumentProperties.Company">
            <summary>
            Returns or sets the company for the document.
            </summary>
            <remarks>
            <p class="body">
            The value of this property is persisted to the extended properties section
            of the document.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Core.OfficeDocumentProperties.Keywords">
            <summary>
            Returns or sets the keywords for the document.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Core.OfficeDocumentProperties.Manager">
            <summary>
            Returns or sets the manager for the document.
            </summary>
            <remarks>
            <p class="body">
            The value of this property is persisted to the extended properties section
            of the document.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Core.OfficeDocumentProperties.Status">
            <summary>
            Returns or sets the status for the document.
            </summary>
            <remarks>
            The value of this property is persisted to the core properties section
            of the document as 'contentStatus'.
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Core.OfficeDocumentProperties.Subject">
            <summary>
            Returns or sets the subject of the document.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Core.OfficeDocumentProperties.Title">
            <summary>
            Returns or sets the title of the document.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Core.OfficeXmlAttribute">
            <summary>
            Duplicated:
            Infragistics.Documents.Excel.Serialization.Excel2007.ExcelXmlAttribute
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Core.OfficeXmlNode">
            <summary>
            Duplicated:
            Infragistics.Documents.Excel.Serialization.Excel2007.ExcelXmlNode
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Core.OfficeXmlAttributeCollection">
            <summary>
            Duplicated:
            Infragistics.Documents.Excel.Serialization.Excel2007.ExcelXmlAttributeCollection
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Core.OfficeXmlDeclaration">
            <summary>
            Duplicated:
            Infragistics.Documents.Excel.Serialization.Excel2007.ExcelXmlDeclaration
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Core.OfficeXmlDocument">
            <summary>
            Duplicated:
            Infragistics.Documents.Excel.Serialization.Excel2007.ExcelXmlDocument
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Core.OfficeXmlElement">
            <summary>
            Duplicated:
            Infragistics.Documents.Excel.Serialization.Excel2007.ExcelXmlElement
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Core.OfficeXmlElement.ToString">
            <summary>
            Returns the string representation of this instance.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Core.OfficeXmlSignificantWhitespace">
            <summary>
            Duplicated:
            Infragistics.Documents.Excel.Serialization.Excel2007.ExcelXmlSignificantWhitespace
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Core.OfficeXmlText">
            <summary>
            Duplicated:
            Infragistics.Documents.Excel.Serialization.Excel2007.ExcelXmlText
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Core.SerializationUtilities.EMUsPerPoint">
            <summary>
            Returns the number of English Metric Units (EMU) in one desktop publishing point (12,700).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Core.SerializationUtilities.PointsPerInch">
            <summary>
            Returns the number of desktop publishing points (DTPs) in one inch (72).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Core.SerializationUtilities.TwipsPerPoint">
            <summary>
            Returns the number of TWIPs (twentieths of a point) in one desktop publishing point (20).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Core.SerializationUtilities.TwipsPerInch">
            <summary>
            Returns the number of TWIPs (twentieths of a point) in one inch (72 x 20 = 1440).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Core.SerializationUtilities.CentimetersPerInch">
            <summary>
            Returns the number of centimeters in one inch (2.54).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Core.SerializationUtilities.TwipsPerCentimeter">
            <summary>
            Returns the number of TWIPs (twentieths of a point) in one centimeter (1440 / 2.54 = ~567).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Core.SerializationUtilities.Precision">
            <summary>
            Returns the number of decimal places to which converted floating-point values are rounded (2).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Core.SerializationUtilities.DefaultImageResolution">
            <summary>
            Returns the default resolution for images, in dots per inch (96 x 96)
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Core.SerializationUtilities.GetXmlDeclaration(System.String,System.String,System.String)">
            <summary>
            Duplicated:
            Infragistics.Documents.Excel.Utilities.GetXmlDeclaration
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Core.SerializationUtilities.GetResolution(System.Drawing.Image)">
            <summary>
            Returns the graphical resolution for the specified image,
            expressed in dots per inch.
            </summary>
            <param name="image">The Image for which to return the resolution.</param>
            <returns>A SizeF struct containing the horizontal and vertical components of the resolution.</returns>
        </member>
        <member name="M:Infragistics.Documents.Core.SerializationUtilities.ToHexBinary3(System.Drawing.Color)">
            <summary>
            Returns a string that is compatible with the ST_HexBinary3
            data type from the specified color value.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Core.SerializationUtilities.ColorEmpty">
            <summary>
            Replace Color.Empty
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.Anchor">
            <summary>
            Encapsulates an anchor to a specific location within the document.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.IUnitOfMeasurementProvider.Unit">
            <summary>
            Returns a value that describes the unit of measurement,
            i.e., points, twips, inches, etc.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.Anchor.Reset">
            <summary>
            Resets all properties of this instance to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.Anchor.AlternateTextDescription">
            <summary>
            Returns or sets the description of the alternative text for the picture or shape,
            for use by assistive technologies or applications which will not display the
            associated picture or shape.
            </summary>
            <remarks>
            <p class="body">
            WordprocessingML consumers which do not support the display of pictures or shapes
            may make use this property to describe the picture to the user. Screen
            reading applications or other assistive technologies may also make use
            of the property to describe the picture or shape to handicapped users.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.Anchor.HorizontalAlignment">
            <summary>
            Returns or sets a value which defines the anchor's horizontal alignment.
            </summary>
            <remarks>
            <p class="body">
            The HorizontalAlignment property is used in conjunction with the
            <see cref="P:Infragistics.Documents.Word.Anchor.RelativeHorizontalPosition">RelativeHorizontalPosition</see>
            to define the horizontal aspect of the anchor's position. An anchor can be aligned
            with the left or right edge of the page, margin, paragraph, etc.
            </p>
            <p class="body">
            By default, the HorizontalAlignment property is not applicable, and positioning is
            implied to be absolute, defined by the value of the
            <see cref="P:Infragistics.Documents.Word.Anchor.HorizontalOffset">HorizontalOffset</see>
            property. Explicitly setting the HorizontalAlignment property to a value other than 'None'
            overrides the HorizontalOffset property setting.
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.Anchor.RelativeHorizontalPosition">RelativeHorizontalPosition</seealso>
            <seealso cref="P:Infragistics.Documents.Word.Anchor.HorizontalOffset">HorizontalOffset</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.Anchor.HorizontalOffset">
            <summary>
            Returns or sets the amount by which the anchor is offset horizontally
            from the boundary defined by the
            <see cref="P:Infragistics.Documents.Word.Anchor.RelativeHorizontalPosition">RelativeHorizontalPosition</see>
            and
            <see cref="P:Infragistics.Documents.Word.Anchor.HorizontalAlignment">HorizontalAlignment</see>
            properties.
            </summary>
            <remarks>
            <p class="body">
            The RelativeHorizontalPosition and HorizontalAlignment properties define the
            boundary at which the anchor is positioned; the HorizontalOffset
            property defines an additional amount of space to be added by which to offset
            the position. For example, if an anchor is left-aligned with the margin, and the offset
            is set to 72 pts., the object will appear one inch from the left edge of the margin.
            </p>
            <p class="body">
            The unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property of the associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </p>
            <p class="body">
            When the
            <see cref="P:Infragistics.Documents.Word.Anchor.HorizontalAlignment">HorizontalAlignment</see>
            property is set to a value other than 'None', this property is not applicable.
            The HorizontalOffset property can be restored to its factory setting
            by assigning 'None' to this property, in which case the HorizontalAlignment property determines
            the horizontal positioning.
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.Anchor.RelativeHorizontalPosition">RelativeHorizontalPosition</seealso>
            <seealso cref="P:Infragistics.Documents.Word.Anchor.HorizontalAlignment">HorizontalAlignment</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.Anchor.RelativeHorizontalPosition">
            <summary>
            Returns or sets a value which defines the part of the document
            to which the anchor's horizontal position is relative.
            </summary>
            <remarks>
            <p class="body">
            The RelativeHorizontalPosition property defines the area
            of the document to which the value of the
            <see cref="P:Infragistics.Documents.Word.Anchor.HorizontalAlignment">HorizontalAlignment</see>
            or
            <see cref="P:Infragistics.Documents.Word.Anchor.HorizontalOffset">HorizontalOffset</see>
            property is relative. For example, if AnchorHorizontalAlignment is set to 'Left',
            and RelativeHorizontalPosition is set to 'LeftMarginArea', the anchor's left
            edge is aligned with the left edge of the document's left margin. If
            AnchorHorizontalAlignment is set to 'Right', and RelativeHorizontalPosition is
            set to 'Page', the anchor's right edge is aligned with the right
            edge of the page, overlapping with the area outside the margin.
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.Anchor.HorizontalAlignment">HorizontalAlignment</seealso>
            <seealso cref="P:Infragistics.Documents.Word.Anchor.HorizontalOffset">HorizontalOffset</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.Anchor.RelativeVerticalPosition">
            <summary>
            Returns or sets a value which defines the part of the document
            to which the anchor's vertical position is relative.
            </summary>
            <remarks>
            <p class="body">
            The RelativeVerticalPosition property defines the area
            of the document to which the value of the
            <see cref="P:Infragistics.Documents.Word.Anchor.VerticalAlignment">VerticalAlignment</see>
            or
            <see cref="P:Infragistics.Documents.Word.Anchor.VerticalOffset">VerticalOffset</see>
            property is relative. For example, if VerticalAlignment is set to 'Top',
            and RelativeVerticalPosition is set to 'Page', the anchor's top
            edge is aligned with the top edge of the page. If
            VerticalAlignment is set to 'Bottom', and RelativeVerticalPosition is
            set to 'Page', the anchor's bottom edge is aligned with the bottom
            edge of the page, overlapping with the area outside the margin.
            </p>
            <p class="body">
            When the
            <see cref="P:Infragistics.Documents.Word.Anchor.VerticalAlignment">VerticalAlignment</see>
            property is explicitly set, the 'Paragraph' setting for this property is not supported;
            in that case this property resolves to 'Page'
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.Anchor.VerticalAlignment">VerticalAlignment</seealso>
            <seealso cref="P:Infragistics.Documents.Word.Anchor.VerticalOffset">VerticalOffset</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.Anchor.VerticalAlignment">
            <summary>
            Returns or sets a value which defines the anchor's vertical alignment.
            </summary>
            <remarks>
            <p class="body">
            The VerticalAlignment property is used in conjunction with the
            <see cref="P:Infragistics.Documents.Word.Anchor.RelativeVerticalPosition">RelativeVerticalPosition</see>
            to define the vertical aspect of the anchor's position. An anchor can be aligned
            with the top or bottom edge of the page, margin, paragraph, etc.
            </p>
            <p class="body">
            By default, the VerticalAlignment property is not applicable, and positioning is
            implied to be absolute, defined by the value of the
            <see cref="P:Infragistics.Documents.Word.Anchor.VerticalOffset">VerticalOffset</see>
            property.
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.Anchor.RelativeVerticalPosition">RelativeVerticalPosition</seealso>
            <seealso cref="P:Infragistics.Documents.Word.Anchor.VerticalOffset">VerticalOffset</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.Anchor.VerticalOffset">
            <summary>
            Returns or sets the amount by which the anchor is offset
            from the boundary defined by the
            <see cref="P:Infragistics.Documents.Word.Anchor.VerticalAlignment">VerticalAlignment</see>
            property.
            </summary>
            <remarks>
            <p class="body">
            The
            <see cref="P:Infragistics.Documents.Word.Anchor.RelativeVerticalPosition">RelativeVerticalPosition</see>
            and
            <see cref="P:Infragistics.Documents.Word.Anchor.VerticalAlignment">VerticalAlignment</see>
            properties define the boundary at which the anchor is positioned; the VerticalOffset
            property defines an additional amount of space to be added by which to offset
            the position. For example, if an anchor is top-aligned with the margin, and the offset
            is set to 72 pts., the object will appear one inch down from the top edge of the margin.
            </p>
            <p class="body">
            The unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property of the associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.Anchor.RelativeVerticalPosition">RelativeVerticalPosition</seealso>
            <seealso cref="P:Infragistics.Documents.Word.Anchor.VerticalAlignment">VerticalAlignment</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.Anchor.Size">
            <summary>
            Returns or sets the size at which the associated picture or shape is rendered.
            </summary>
            <remarks>
            <p class="body">
            In the absence of an explicit setting, this property returns null.
            In this case, pictures are displayed at their natural size, and
            shapes are displayed at a size of one inch square.
            </p>
            <p class="body">
            When set explicitly, the unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.Anchor.SizeInTwips">
            <summary>
            Returns the resolved size in TWIPs
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.Anchor.SizeInEMUs">
            <summary>
            Returns the resolved size in EMUs
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.Anchor.TextWrapping">
            <summary>
            Returns or sets a value which determines the layout for text
            included in the same paragraph as the anchor.
            </summary>
            <remarks>
            <p class="body">
            The TextWrapping property works in conjunction with the
            <see cref="P:Infragistics.Documents.Word.Anchor.TextWrappingSide">TextWrappingSide</see>
            property to define the manner in which text that is adjacent to the anchor
            is wrapped.
            </p>
            </remarks>
            <seealso cref="T:Infragistics.Documents.Word.AnchorTextWrappingSide">AnchorTextWrappingSide</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.Anchor.TextWrappingSide">
            <summary>
            Returns or sets a value which determines the sides of
            the anchor around which adjacent text can be wrapped.
            </summary>
            <remarks>
            <p class="body">
            The TextWrappingSide property works in conjunction with the
            <see cref="P:Infragistics.Documents.Word.Anchor.TextWrapping">TextWrapping</see>
            property to define the manner in which text that is adjacent to the anchor
            is wrapped.
            </p>
            <p class="body">
            The TextWrappingSide property is not applicable when the TextWrapping property
            is set to 'TextInBackground' or 'TextInForeground'.
            </p>
            </remarks>
            <seealso cref="T:Infragistics.Documents.Word.AnchorTextWrapping">AnchorTextWrapping</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.Anchor.Hyperlink">
            <summary>
            Returns a
            <see cref="T:Infragistics.Documents.Word.Hyperlink">Hyperlink</see>
            instance which provides a way to add a hyperlink to the picture.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.AnchoredShape">
            <summary>
            Encapsulates a shape that is anchored to a specific
            location within the document.
            </summary>
            <remarks>
            <p class="body">
            Shapes are rendered by the consumer using Vector Markup Language (VML),
            which is supported in both MS Word 2007 and MS Word 2010.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.AnchoredShape.Create(Infragistics.Documents.Word.WordDocumentWriter,Infragistics.Documents.Word.Shape)">
            <summary>
            Creates a new instance which is associated with the specified
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            </summary>
            <param name="writer">
            The associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            </param>
            <param name="shape">
            A previously created
            <see cref="T:Infragistics.Documents.Word.Shape">Shape</see>
            shape instance on which this instance is based.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.AnchoredShape.Create(Infragistics.Documents.Word.WordDocumentWriter,Infragistics.Documents.Word.ShapeType)">
            <summary>
            Creates a new instance which is associated with the specified
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            </summary>
            <param name="writer">
            The associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            </param>
            <param name="shapeType">
            A
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which defines the shape.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.AnchoredShape.Reset(System.Boolean)">
            <summary>
            Resets all properties of this instance to their respective defaults.
            </summary>
            <param name="resetShape">
            Specifies whether to reset the properties of the associated
            <see cref="P:Infragistics.Documents.Word.AnchoredShape.Shape">Shape</see>.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.AnchoredShape.Reset(Infragistics.Documents.Word.Shape)">
            <summary>
            Resets all properties of this instance to their respective defaults.
            </summary>
            <param name="shape">
            The new
            <see cref="T:Infragistics.Documents.Word.Shape">Shape</see>
            with which this instance is to be associated.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.AnchoredShape.ToString">
            <summary>
            Returns the string representation of this instance.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.AnchoredShape.Shape">
            <summary>
            Returns the associated
            <see cref="T:Infragistics.Documents.Word.Shape">Shape</see>
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.Shape">
            <summary>
            Abstract class which encapsulates a geometric shape such
            as a line, rectangle, ellipse, etc.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.Shape.Reset">
            <summary>
            Resets all properties of this instance to their respective defaults.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.Shape.ToString">
            <summary>
            Returns the string representation of this instance.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.Shape.Size">
            <summary>
            Returns or sets the size at which the shape is rendered.
            </summary>
            <remarks>
            <p class="body">
            In the absence of an explicit setting, this property returns null.
            In this case, shapes are displayed at a size of one inch square.
            </p>
            <p class="body">
            When set explicitly, the unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.Shape.SizeInTwips">
            <summary>
            Returns the resolved size in TWIPs
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.Shape.Type">
            <summary>
            Returns a
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which describes the type of the shape.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.VmlShape">
            <summary>
            Abstract class which encapsulates a geometric shape such
            as a line, rectangle, ellipse, etc., which is rendered by
            the consumer using Vector Markup Language (VML).
            </summary>
            <remarks>
            <p class="body">
            Shapes are rendered by the consumer using Vector Markup Language (VML),
            which is supported in both MS Word 2007 and MS Word 2010.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.VmlShape.Create(Infragistics.Documents.Word.WordDocumentWriter,Infragistics.Documents.Word.ShapeType)">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.VmlShape">VmlShape</see>-derived
            instance based on the specified <paramref name="shapeType"/>
            </summary>
            <param name="writer">
            The associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </param>
            <param name="shapeType">
            A
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which defines the type of shape to be created.
            </param>
            <remarks>
            <p class="body">
            The type of the object returned from the Create method is different
            based on the specified <paramref name="shapeType"/>. For example,
            when 'Line' is specified as the shape type, a VmlLine instance is
            returned.
            </p>
            <p class="body">
            To access properties that are specific to the VmlShape-derived type
            that is returned, the reference returned from this method can be upcasted.
            </p>
            </remarks>
            <seealso cref="T:Infragistics.Documents.Word.ShapeType">ShapeType enumeration</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.VmlShape.Reset">
            <summary>
            Resets all properties of this instance to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.VmlShape.LineColor">
            <summary>
            Returns or sets the color used to render the perimeter of the shape.
            </summary>
            <remarks>
            <p class="body">
            The LineColor property controls the color for a
            <see cref="T:Infragistics.Documents.Word.VmlLine">line</see>
            shape.
            </p>
            <p class="body">
            The LineColor property controls the color of the outer border for
            shapes which have area. Use the
            <see cref="P:Infragistics.Documents.Word.VmlRotatableShape.FillColor">FillColor</see>
            property to change the color of the interior region.
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.VmlRotatableShape.FillColor">FillColor</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.VmlShape.LineWidth">
            <summary>
            Returns or sets the width of the line which renders the perimeter of the shape.
            </summary>
            <remarks>
            <p class="body">
            When set explicitly, the unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.VmlShape.LineStyle">
            <summary>
            Returns or sets the style of the line drawn around
            the perimeter of the shape.
            </summary>
            <remarks>
            <p class="body">
            The LineStyle property controls the style for a
            <see cref="T:Infragistics.Documents.Word.VmlLine">line</see>
            shape. By default, lines are drawn with a solid, unbroken
            stroke; the LineStyle property can be used to draw dashes,
            dots, or combinations thereof.
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.VmlShape.LineColor">LineColor</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.VmlShape.Type">
            <summary>
            Returns a
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which describes the type of the shape.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.VmlLine">
            <summary>
            Renders a straight line using Vector Markup Language (VML)
            </summary>
            <remarks>
            <p class="body">
            The origin for a line is always implied to be the top-left
            corner of it bounding rectangle. When the bounding rectangle's
            height is non-zero, the slope of the line is negative (resembles
            a backslash); to make the slope positive, set the
            <see cref="P:Infragistics.Documents.Word.VmlLine.InvertY">InvertY</see>
            property to true.
            </p>
            <p class="body">
            To render a horizontal line, set the Height component of the
            <see cref="P:Infragistics.Documents.Word.Shape.Size">Size</see>
            property to zero.
            </p>
            <p class="body">
            To render a vertical line, set the Width component of the
            <see cref="P:Infragistics.Documents.Word.Shape.Size">Size</see>
            property to zero.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.VmlLine.Reset">
            <summary>
            Resets all properties of this instance to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.VmlLine.InvertY">
            <summary>
            Returns or sets a boolean value which determines whether the
            y-axis of the line is inverted.
            </summary>
            <remarks>
            <p class="body">
            The origin for a line is always implied to be the top-left
            corner of it bounding rectangle. When the bounding rectangle's
            height is non-zero, the slope of the line is negative (resembles
            a backslash). Setting the InvertY property switches the orientation
            of the y-axis, making the slope of the line positive.
            </p>
            <p class="body">
            In the case where either the width or height component of the
            <see cref="P:Infragistics.Documents.Word.Shape.Size">Size</see>
            is zero, this property has no effect.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.VmlLine.Type">
            <summary>
            Returns a
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which describes the type of the shape.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.VmlRotatableShape">
            <summary>
            Base class for shapes that support rotational transformation.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.VmlRotatableShape.Reset">
            <summary>
            Resets all properties of this instance to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.VmlRotatableShape.FillColor">
            <summary>
            Returns or sets the color used to fill the interior of the shape.
            </summary>
            <remarks>
            <p class="body">
            The FillColor property controls the color of the interior region.
            Use the
            <see cref="P:Infragistics.Documents.Word.VmlShape.LineColor">LineColor</see>
            property to change the color of the perimeter of the shape.
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.VmlShape.LineColor">LineColor</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.VmlRotatableShape.Rotation">
            <summary>
            Returns or sets the rotation for the shape, expressed in degrees.
            </summary>
            <remarks>
            <p class="body">
            Use positive values between 1 and 180 for clockwise rotation about the x-axis.
            </p>
            <p class="body">
            Use negative values between -1 and -180 for counter-clockwise rotation about the x-axis.
            </p>
            <p class="body">
            Rotating a shape by exactly 180 degrees is the equivalent of inverting it about the x-axis.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.VmlRotatableShape.Type">
            <summary>
            Returns a
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which describes the type of the shape.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.VmlRectangle">
            <summary>
            Renders a rectangle using Vector Markup Language (VML).
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.VmlRectangle.Type">
            <summary>
            Returns a
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which describes the type of the shape.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.VmlEllipse">
            <summary>
            Renders an ellipse using Vector Markup Language (VML)
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.VmlEllipse.Type">
            <summary>
            Returns a
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which describes the type of the shape.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.VmlIsosceleseTriangle">
            <summary>
            Renders a triangle whose apex is at the top center of the bounding rectangle,
            using Vector Markup Language (VML).
            </summary>
            <remarks>
            <p class="body">
            The apex of the triangle can be made to appear at the bottom
            of the bounding rectangle by setting the
            <see cref="P:Infragistics.Documents.Word.VmlRotatableShape.Rotation">Rotation</see>
            property to 180 degrees.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.VmlIsosceleseTriangle.Type">
            <summary>
            Returns a
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which describes the type of the shape.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.VmlRightTriangle">
            <summary>
            Renders a right triangle whose apex is at the top left of the bounding rectangle,
            using Vector Markup Language (VML).
            </summary>
            <remarks>
            <p class="body">
            The orientation of the triangle can be changed using the
            <see cref="P:Infragistics.Documents.Word.VmlRightTriangle.InvertX">InvertX</see>
            and
            <see cref="P:Infragistics.Documents.Word.VmlRightTriangle.InvertY">InvertY</see>
            properties.
            </p>
            <p class="body">
            Setting both the InvertX and InvertY properties to true results
            in no change to the shape's orientation. 
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.VmlRightTriangle.Reset">
            <summary>
            Resets all properties of this instance to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.VmlRightTriangle.InvertX">
            <summary>
            Returns or sets a boolean value which determines whether the
            x-axis of the triangle is inverted.
            </summary>
            <remarks>
            <p class="body">
            The apex for a right triangle is always implied to be aligned with
            the the left edge of the bounding rectangle. To align it with
            the right edge, set this property to true.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.VmlRightTriangle.InvertY">
            <summary>
            Returns or sets a boolean value which determines whether the
            y-axis of the line is inverted.
            </summary>
            <remarks>
            <p class="body">
            The apex for a right triangle is always implied to point to
            the top edge of the bounding rectangle. To switch vertical
            orientation, set the InvertY property to true.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.VmlRightTriangle.Type">
            <summary>
            Returns a
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which describes the type of the shape.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.InlineShape">
            <summary>
            Enacpsulates a shape which appears inline with textual content.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.SizeableContent">
            <summary>
            Base class for inline shapes and pictures
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.ParagraphContent">
            <summary>
            Base class from which classes that encapsulate paragraph content derive.
            </summary>
            <seealso cref="T:Infragistics.Documents.Word.TextRun">TextRun class</seealso>
            <seealso cref="T:Infragistics.Documents.Word.Hyperlink">Hyperlink class</seealso>
            <seealso cref="T:Infragistics.Documents.Word.TextHyperlink">TextHyperlink class</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.SizeableContent.Reset">
            <summary>
            Restores all property values of this instance to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.SizeableContent.AlternateTextDescription">
            <summary>
            Returns or sets the description of the alternative text for the picture or shape,
            for use by assistive technologies or applications which will not display the
            associated picture or shape.
            </summary>
            <remarks>
            <p class="body">
            WordprocessingML consumers which do not support the display of pictures or shapes
            may make use this property to describe the picture to the user. Screen
            reading applications or other assistive technologies may also make use
            of the property to describe the picture or shape to handicapped users.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.SizeableContent.Hyperlink">
            <summary>
            Returns a
            <see cref="T:Infragistics.Documents.Word.Hyperlink">Hyperlink</see>
            instance which provides a way to add a hyperlink to the shape or picture.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.SizeableContent.Size">
            <summary>
            Returns or sets the size at which the shape or picture is rendered.
            </summary>
            <remarks>
            <p class="body">
            In the absence of an explicit setting, this property returns null.
            In this case, shapes are displayed at a size of one inch square,
            and pictures are displayed at their natural size.
            </p>
            <p class="body">
            When set explicitly, the unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.SizeableContent.SizeInTwips">
            <summary>
            Returns the resolved size in TWIPs
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.InlineShape.Create(Infragistics.Documents.Word.WordDocumentWriter,Infragistics.Documents.Word.ShapeType)">
            <summary>
            Creates a new instance which is associated with the specified
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            </summary>
            <param name="writer">
            The associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            </param>
            <param name="shapeType">
            A
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which defines the shape.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.InlineShape.Create(Infragistics.Documents.Word.WordDocumentWriter,Infragistics.Documents.Word.Shape)">
            <summary>
            Creates a new instance which is associated with the specified
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            </summary>
            <param name="writer">
            The associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            </param>
            <param name="shape">
            The associated
            <see cref="T:Infragistics.Documents.Word.Shape">Shape</see>.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.InlineShape.Reset(Infragistics.Documents.Word.ShapeType)">
            <summary>
            Restores all property values of this instance to their respective defaults.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.InlineShape.Reset(Infragistics.Documents.Word.Shape)">
            <summary>
            Restores all property values of this instance to their respective defaults.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.InlineShape.ToString">
            <summary>
            Returns the string representation of this object.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.InlineShape.Shape">
            <summary>
            Returns the associated
            <see cref="T:Infragistics.Documents.Word.Shape">Shape</see>
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.AnchoredPicture">
            <summary>
            Encapsulates a picture or image that is anchored to a specific
            location within the document.
            </summary>
            <remarks>
            <p class="body">
            Unlike an inline picture, which moves along with adjacent content,
            an AnchoredPicture remains at a fixed location within the paragraph,
            with adjacent text flowing around it.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.AnchoredPicture.Create(Infragistics.Documents.Word.WordDocumentWriter,System.Drawing.Image)">
            <summary>
            Creates a new instance which is associated with the specified
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            </summary>
            <param name="writer">
            The associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            </param>
            <param name="image">The associated image.</param>
        </member>
        <member name="M:Infragistics.Documents.Word.AnchoredPicture.Reset(System.Drawing.Image)">
            <summary>
            Resets all properties of this instance to their respective defaults.
            </summary>
            <param name="image">
            The
            <see cref="P:Infragistics.Documents.Word.AnchoredPicture.Image">Image</see>
            with which this instance is to be associated.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.AnchoredPicture.ToString">
            <summary>
            Returns the string representation of this object.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.AnchoredPicture.TextPadding">
            <summary>
            Returns or sets the padding between the picture and the
            text which flows around it.
            </summary>
            <remarks>
            <p class="body">
            This property is only applicable when the
            <see cref="P:Infragistics.Documents.Word.Anchor.TextWrapping">TextWrapping</see>
            property is set to 'Square' or 'TopAndBottom'. When set to 'TopAndBottom',
            only the vertical components of the value are applicable.
            </p>
            <p class="body">
            The unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property of the associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.AnchoredPicture.Outline">
            <summary>
            Returns an object which defines the properties of the outline
            that is drawn around the associated picture.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.AnchoredPicture.Image">
            <summary>
            Returns the underlying
            <a href="http://msdn.microsoft.com/en-us/library/system.drawing.image.aspx">Image</a>
            associated with this instance.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.PictureOutlineProperties">
            <summary>
            Encapsulates the properties of the outline that is
            displayed around an anchored or inline picture.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.WordPropertiesBase">
            <summary>
            Base class for objects which represent the properties of a
            Word entity such as a Paragraph, Table, TableRow, TableCell, etc.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordPropertiesBase.Reset">
            <summary>
            Restores all property values for this instance to their respective defaults.
            </summary>
            <remarks>
            <p class="body">
            The Reset method restores th object to the state it was
            in when it was first instantiated. When used within the context of the
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            class, calling the Reset method on an existing instance is recommended over
            instantiation of a new object since the current state of this object has no
            bearing on content that was produced at an earlier time, as the content
            has already been persisted.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.PictureOutlineProperties.Create(Infragistics.Documents.Word.WordDocumentWriter)">
            <summary>
            Returns a new instance which is associated with the specified
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </summary>
            <param name="writer">
            The associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            instance.
            </param>
            <returns>
            A new
            <see cref="T:Infragistics.Documents.Word.PictureOutlineProperties">PictureOutlineProperties</see>
            instance.
            </returns>
        </member>
        <member name="M:Infragistics.Documents.Word.PictureOutlineProperties.Reset">
            <summary>
            Resets all properties of this instance to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.PictureOutlineProperties.Color">
            <summary>
            Returns or sets a value which determines the color of the outline.
            </summary>
            <remarks>
            <p class="body">
            The Color property is not applicable unless the
            <see cref="P:Infragistics.Documents.Word.PictureOutlineProperties.Style">Style</see>
            property is set to a value other than 'None'.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.PictureOutlineProperties.CornerStyle">
            <summary>
            Returns or sets a value indicating the corner style of the outline.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.PictureOutlineProperties.Style">
            <summary>
            Returns or sets a value indicating the style of the outline.
            </summary>
            <remarks>
            <p class="body">
            The Style property resolves to 'None', so that by default no outline
            is drawn around the associated picture.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.PictureOutlineProperties.LineWidth">
            <summary>
            Returns or sets a value indicating the width of the outline.
            </summary>
            <remarks>
            <p class="body">
            The LineWidth property is not applicable unless the
            <see cref="P:Infragistics.Documents.Word.PictureOutlineProperties.Style">Style</see>
            property is set to a value other than 'None'.
            </p>
            </remarks>
        </member>
        <member name="T:Infragistics.Documents.Word.InlinePicture">
            <summary>
            Enacpsulates a picture which appears inline with textual content.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.InlinePicture.Create(Infragistics.Documents.Word.WordDocumentWriter,System.Drawing.Image)">
            <summary>
            Creates a new instance which is associated with the specified
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            </summary>
            <param name="writer">
            The associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            </param>
            <param name="image">The associated image.</param>
        </member>
        <member name="M:Infragistics.Documents.Word.InlinePicture.Reset(System.Drawing.Image)">
            <summary>
            Restores all property values of this instance to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.InlinePicture.Image">
            <summary>
            Returns the underlying
            <a href="http://msdn.microsoft.com/en-us/library/system.drawing.image.aspx">Image</a>
            associated with this instance.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.WordProcessingMLAttributeType">
            <summary>
            Enums whose constant names correspond to the attributes in the
            http://schemas.openxmlformats.org/wordprocessingml/2006/main
            namespace. Only contains the ones we currently use.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.val">
            <summary>w:val</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.left">
            <summary>w:left</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.right">
            <summary>w:right</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.history">
            <summary>w:history</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.tooltip">
            <summary>w:tooltip</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.themeColor">
            <summary>w:themeColor</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.asciiTheme">
            <summary>w:asciiTheme</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.eastAsiaTheme">
            <summary>w:eastAsiaTheme</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.hAnsiTheme">
            <summary>w:hAnsiTheme</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.cstheme">
            <summary>w:cstheme</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.eastAsia">
            <summary>w:eastAsia</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.bidi">
            <summary>w:bidi</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.after">
            <summary>w:after</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.before">
            <summary>w:before</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.line">
            <summary>w:line</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.lineRule">
            <summary>w:lineRule</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.hRule">
            <summary>w:hRule</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.w">
            <summary>w:w</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.type">
            <summary>w:type</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.fill">
            <summary>w:fill</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.h">
            <summary>w:h</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.orient">
            <summary>w:orient</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.code">
            <summary>w:code</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.top">
            <summary>w:top</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.bottom">
            <summary>w:bottom</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.header">
            <summary>w:header</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.footer">
            <summary>w:footer</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.gutter">
            <summary>w:gutter</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.space">
            <summary>w:space</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.linePitch">
            <summary>w:linePitch</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.instr">
            <summary>w:instr</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.fldCharType">
            <summary>w:fldCharType</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLAttributeType.start">
            <summary>w:start</summary>
        </member>
        <member name="T:Infragistics.Documents.Word.WordProcessingMLElementType">
            <summary>
            Enums whose constant names correspond to the elements in the
            http://schemas.openxmlformats.org/wordprocessingml/2006/main
            namespace. Only contains the ones we currently use.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.document">
            <summary>document</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.body">
            <summary>document</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.p">
            <summary>p (paragraph)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.pPr">
            <summary>pPr (paragraph properties)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.jc">
            <summary>jc (alignment)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.ind">
            <summary>ind (indentation)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.tblInd">
            <summary>tblInd (table indentation)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.pageBreakBefore">
            <summary>pageBreakBefore</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.r">
            <summary>r (text run)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.rPr">
            <summary>rPr (run properties)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.cantSplit">
            <summary>cantSplit (Table Row Cannot Break Across Pages)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.rStyle">
            <summary>rStyle (run style)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.noProof">
            <summary>noProof (no proof)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.t">
            <summary>t (text)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.val">
            <summary>val</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.br">
            <summary>br (break)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.cr">
            <summary>rr (carriage return)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.kern">
            <summary>kern (character kerning)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.w">
            <summary>w (expanded/compressed text)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.spacing">
            <summary>spacing</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.position">
            <summary>position</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.hyperlink">
            <summary>hyperlink</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.lang">
            <summary>lang</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.drawing">
            <summary>drawing</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.tbl">
            <summary>tbl</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.tblPr">
            <summary>tblPr</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.tblGrid">
            <summary>tblGrid</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.tblHeader">
            <summary>tblHeader</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.tblCellSpacing">
            <summary>tblCellSpacing</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.tblCellMar">
            <summary>tblCellMar</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.tcMar">
            <summary>tcMar</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.tblLayout">
            <summary>tblLayout</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.tblW">
            <summary>tblW</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.gridCol">
            <summary>gridCol</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.gridSpan">
            <summary>gridSpan</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.tr">
            <summary>tr</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.tc">
            <summary>tc</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.trPr">
            <summary>trPr</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.tcPr">
            <summary>tcPr</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.trHeight">
            <summary>trHeight</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.tcW">
            <summary>tcW</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.vMerge">
            <summary>vMerge</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.left">
            <summary>w:left</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.right">
            <summary>w:right</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.top">
            <summary>w:top</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.bottom">
            <summary>w:bottom</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.shd">
            <summary>w:shd</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.tblBorders">
            <summary>w:tblBorders</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.tcBorders">
            <summary>w:tcBorders</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.insideH">
            <summary>w:insideH</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.insideV">
            <summary>w:insideV</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.tblStyle">
            <summary>w:tblStyle</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.textDirection">
            <summary>w:textDirection</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.vAlign">
            <summary>w:vAlign</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.sectPr">
            <summary>w:sectPr</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.pgSz">
            <summary>w:pgSz</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.pgMar">
            <summary>w:pgMar</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.cols">
            <summary>w:cols</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.docGrid">
            <summary>w:docGrid</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.hdr">
            <summary>w:hdr</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.ftr">
            <summary>w:ftr</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.headerReference">
            <summary>w:headerReference</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.footerReference">
            <summary>w:footerReference</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.titlePg">
            <summary>w:titlePg</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.fldSimple">
            <summary>w:fldSimple</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.fldChar">
            <summary>w:fldChar</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.instrText">
            <summary>w:instrText</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.pgNumType">
            <summary>w:pgNumType</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.pict">
            <summary>w:pict</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.gridBefore">
            <summary>w:gridBefore</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingMLElementType.gridAfter">
            <summary>w:gridAfter</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.XmlElementType.space">
            <summary>space</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.XmlNamespaceElementType.xmlns">
            <summary>xmlns</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.RelationshipsElementType.id">
            <summary>id</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.RelationshipsAttributeType.embed">
            <summary>embed</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordStylesElementType.styles">
            <summary>styles</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordStylesElementType.docDefaults">
            <summary>docDefaults</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordStylesElementType.rPrDefault">
            <summary>rPrDefault</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordStylesElementType.pPrDefault">
            <summary>pPrDefault</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordStylesElementType.style">
            <summary>style</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordStylesElementType.name">
            <summary>name</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordStylesAttributeType.type">
            <summary>type</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordStylesAttributeType.styleId">
            <summary>styleId</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordStylesAttributeType.val">
            <summary>val</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordStylesAttributeType._default">
            <summary>default</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.rFonts">
            <summary>rFonts (typeface names)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.sz">
            <summary>sz (size)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.szCs">
            <summary>sz (size for complex script)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.color">
            <summary>color</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.b">
            <summary>b (bold)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.bCs">
            <summary>bCs (bold for complex script)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.i">
            <summary>i (italic)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.iCs">
            <summary>i (italic for complex script)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.u">
            <summary>u (underline)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.ascii">
            <summary>ascii</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.cs">
            <summary>cs (complex script)</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.eastAsia">
            <summary>eastAsia</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.hAnsi">
            <summary>hAnsi</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.caps">
            <summary>caps</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.smallCaps">
            <summary>smallCaps</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.strike">
            <summary>strike</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.dstrike">
            <summary>dstrike</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.vanish">
            <summary>vanish</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.emboss">
            <summary>emboss</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.imprint">
            <summary>imprint</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.outline">
            <summary>outline</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.shadow">
            <summary>shadow</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.rtl">
            <summary>rtl</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordFontElementType.vertAlign">
            <summary>vertAlign</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingElementType.inline">
            <summary>inline</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingElementType.anchor">
            <summary>anchor</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingElementType.simplePos">
            <summary>simplePos</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingElementType.extent">
            <summary>extent</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingElementType.docPr">
            <summary>docPr</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingElementType.positionH">
            <summary>positionH</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingElementType.positionV">
            <summary>positionV</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingElementType.align">
            <summary>align</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingElementType.posOffset">
            <summary>posOffset</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingElementType.wrapTopAndBottom">
            <summary>wrapTopAndBottom</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingElementType.wrapNone">
            <summary>wrapNone</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingElementType.wrapSquare">
            <summary>wrapSquare</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingElementType.cNvGraphicFramePr">
            <summary>cNvGraphicFramePr</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.distT">
            <summary>distT</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.distB">
            <summary>distB</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.distL">
            <summary>distL</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.distR">
            <summary>distR</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.cx">
            <summary>cx</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.cy">
            <summary>cy</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.id">
            <summary>id</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.name">
            <summary>name</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.title">
            <summary>title</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.descr">
            <summary>descr</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.uri">
            <summary>uri</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.x">
            <summary>x</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.y">
            <summary>y</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.prst">
            <summary>prst</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.simplePos">
            <summary>simplePos</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.relativeHeight">
            <summary>relativeHeight</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.behindDoc">
            <summary>behindDoc</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.locked">
            <summary>locked</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.layoutInCell">
            <summary>layoutInCell</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.allowOverlap">
            <summary>allowOverlap</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.relativeFrom">
            <summary>relativeFrom</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.wrapText">
            <summary>wrapText</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.cmpd">
            <summary>cmpd</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.w">
            <summary>w</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.val">
            <summary>val</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.noChangeAspect">
            <summary>noChangeAspect</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordProcessingDrawingAttributeType.lim">
            <summary>lim</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLElementType.graphic">
            <summary>graphic</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLElementType.graphicData">
            <summary>graphicData</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLElementType.graphicFrameLocks">
            <summary>graphicFrameLocks</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLElementType.blip">
            <summary>blip</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLElementType.stretch">
            <summary>stretch</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLElementType.fillRect">
            <summary>fillRect</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLElementType.xfrm">
            <summary>xfrm</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLElementType.ext">
            <summary>ext</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLElementType.off">
            <summary>off</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLElementType.prstGeom">
            <summary>off</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLElementType.ln">
            <summary>ln</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLElementType.solidFill">
            <summary>solidFill</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLElementType.srgbClr">
            <summary>srgbClr</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLElementType.miter">
            <summary>a:miter</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLElementType.bevel">
            <summary>a:bevel</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLElementType.round">
            <summary>a:round</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLElementType.hlinkClick">
            <summary>a:hlinkClick</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLPicElementType.pic">
            <summary>pic</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLPicElementType.nvPicPr">
            <summary>nvPicPr</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLPicElementType.cNvPr">
            <summary>cNvPr</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLPicElementType.cNvPicPr">
            <summary>cNvPicPr</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLPicElementType.blipFill">
            <summary>blipFill</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.DrawingMLPicElementType.spPr">
            <summary>spPr</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.LineSpacingRule.Auto">
            <summary>
            Specifies that the line spacing is automatically determined
            by the size of its contents, with no predetermined minimum or
            maximum size.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.LineSpacingRule.AtLeast">
            <summary>
            Specifies that the height of the line is at least
            the value specified, but may be expanded to fit its
            content as needed.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.LineSpacingRule.Exact">
            <summary>
            Specifies that the height of the line shall be exactly the
            value specified, regardless of the size of the contents.
            The contents are clipped as necessary under this setting.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.WordDocumentWriterException">
            <summary>
            Thrown when an error is encountered by the
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentWriterException.Message">
            <summary>
            Returns the message for the exception.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentWriterException.Reason">
            <summary>
            Returns an enumerated value which identifies the reason for the exception.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">
            <summary>
            Thrown when an exception is thrown by the XMLWriter during the course
            of writing content to the main document part.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException.Element">
            <summary>
            Returns the fully qualified name of the XML element that was
            being written at the time the exception was thrown, or null if
            there is no associated element.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException.Attribute">
            <summary>
            Returns the fully qualified name of the XML attribute that was
            being written at the time the exception was thrown, or null if
            there is no associated attribute.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.WordDocumentWriterExceptionReason">
            <summary>
            Constants which identify the reason an exception was thrown by the
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            class.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.None">
            <summary>
            Used for variable initialization.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.DocumentNotOpen">
            <summary>
            A write method was called before the document was opened.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.ParagraphNotOpen">
            <summary>
            An attempt was made to add content such as a text run, hyperlink,
            or picture when there is currently no open paragraph.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.TableNotOpen">
            <summary>
            An attempt was made to add content such as a row or cell
            when there is currently no open table.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.ParagraphNotClosed">
            <summary>
            A previously opened paragraph was not closed.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.ParagraphNotClosedTableStarted">
            <summary>
            A new table was started before all paragraphs were closed.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.ParagraphNotClosedTableRowStarted">
            <summary>
            A new table row was started before all paragraphs were closed.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.ParagraphNotClosedTableCellStarted">
            <summary>
            A new table cell was started before all paragraphs were closed.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.NestedParagraph">
            <summary>
            An attempt was made to start a paragraph when one is already open.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.TableNotClosed">
            <summary>
            A previously opened table was not closed.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.NestedTable">
            <summary>
            An attempt was made to start a table when one is already open.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.RowNotOpen">
            <summary>
            An attempt was made to add content to a table row or close a table row
            when there is currently no open row.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.NestedRow">
            <summary>
            An attempt was made to add a table row when one is already open in the same table.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.RowNotClosed">
            <summary>
            A table row was opened, but was not properly closed.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.RowClosedNoCell">
            <summary>
            An attempt was made to close a table row that has no table cells.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.CellNotClosed">
            <summary>
            A table cell was opened, but was not properly closed.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.CellNotClosedTableClosed">
            <summary>
            A table was closed, but closure of a previously opened table cell is pending.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.RowNotClosedTableClosed">
            <summary>
            A table was closed, but closure of a previously opened table row is pending.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.NestedCell">
            <summary>
            An attempt was made to add a table cell when one is already open in the same table.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.CellNotOpen">
            <summary>
            An attempt was made to close a table cell when there is currently no open cell.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.WriterError">
            <summary>
            The XML writer used to serialize the content is in an error state.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.HeaderWriterError">
            <summary>
            An exception was thrown during the course of writing content
            to a header section part. The inner exception contains more
            specific information about the error.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.FooterWriterError">
            <summary>
            An exception was thrown during the course of writing content
            to a footer section part. The inner exception contains more
            specific information about the error.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.DocumentClosureError">
            <summary>
            An exception was thrown during the course of closing a document.
            The inner exception contains more specific information about the error.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.HeaderFooterWriterClosureError">
            <summary>
            An exception was thrown during the course of closing a header or footer writer.
            The inner exception contains more specific information about the error.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.HeaderFooterWriterNotClosed">
            <summary>
            The document writer was closed, but closure of a header/footer writer is still pending.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.HeaderFooterWriterNotOpened">
            <summary>
            The document writer was closed, but a header/footer writer that was
            previously created was never opened.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.ParagraphNotClosedSectionStarted">
            <summary>
            A new section was started before all paragraphs were closed.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.TableOpenSectionStarted">
            <summary>
            An attempt was made to define a section when a table was open.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.RowOpenSectionStarted">
            <summary>
            An attempt was made to define a section when a table row was open.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterExceptionReason.CellOpenSectionStarted">
            <summary>
            An attempt was made to define a section when a table cell was open.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.Font">
            <summary>
            Provides a way to customize the visual attributes of a character or range of characters.
            </summary>
            <remarks>
            <p class="body">
            The Font class exposes properties like Bold, Italic, Underline, etc., which
            enable the developer to format characters in the same manner as a user of MS Word.
            </p>
            </remarks>
        </member>
        <member name="F:Infragistics.Documents.Word.Font.SizeMaxValueTwips">
            <summary>
            The maximum allowable value for the
            <see cref="P:Infragistics.Documents.Word.Font.Size">Size</see>
            property, expressed in twips (32760)
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.Font.Create(Infragistics.Documents.Word.WordDocumentWriter)">
            <summary>
            Returns a new instance which is associated with the specified
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </summary>
            <param name="writer">
            The associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            instance.
            </param>
            <returns>
            A new
            <see cref="T:Infragistics.Documents.Word.Font">Font</see>
            instance.
            </returns>
        </member>
        <member name="M:Infragistics.Documents.Word.Font.ToString">
            <summary>
            Returns the string representation of this instance.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.Font.MergeProperties(Infragistics.Documents.Word.Font@)">
            <summary>
            Merges the property values that are explicitly set on this instance
            into the same properties on the <paramref name="destination"/> instance
            if they are not explicitly set on the destination instance.
            </summary>
            <param name="destination">The instance to which the property values are assigned.</param>
        </member>
        <member name="M:Infragistics.Documents.Word.Font.MergeProperties(Infragistics.Documents.Word.Font,Infragistics.Documents.Word.Font@)">
            <summary>
            Merges the property values that are explicitly set on the
            <paramref name="source"/> instance into the same properties
            on the <paramref name="destination"/> instance if they are
            not explicitly set on the destination instance.
            </summary>
            <param name="source">The instance from which the property values are copied.</param>
            <param name="destination">The instance to which the property values are assigned.</param>
        </member>
        <member name="M:Infragistics.Documents.Word.Font.Reset">
            <summary>
            Restores all property values to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.Font.Bold">
            <summary>
            Returns or sets a boolean value indicating whether the font is bolded.
            </summary>
            <remarks>
            <p class="body">
            When not explicitly set, the actual value of the property is determined
            at a higher level of the property resolution hierarchy.
            </p>
            <p class="body">
            This property can be restored to its default value by setting it to null.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.Font.CharacterSpacing">
            <summary>
            Returns a
            <see cref="T:Infragistics.Documents.Word.FontCharacterSpacing">FontCharacterSpacing</see>
            instance which provides a way to customize spacing and kerning for a
            <see cref="T:Infragistics.Documents.Word.Font">Font</see>
            </summary>
            <remarks>
            <p class="body">
            To reduce the memory footprint, creation of the FontCharacterSpacing object
            returned from this property is deferred until it is requested publicly
            by a consumer. To avoid triggering creation, use the
            <see cref="P:Infragistics.Documents.Word.Font.HasCharacterSpacing">HasCharacterSpacing</see>
            property before accessing this property.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.Font.HasCharacterSpacing">
            <summary>
            Returns a boolean value indicating whether the
            <see cref="T:Infragistics.Documents.Word.FontCharacterSpacing">FontCharacterSpacing</see>
            instance returned from the 
            <see cref="P:Infragistics.Documents.Word.Font.CharacterSpacing">CharacterSpacing</see>
            property has been created.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.Font.ForeColor">
            <summary>
            Returns or sets the color of the text.
            </summary>
            <remarks>
            <p class="body">
            The default color value can be reinstated by setting this property to Color.Empty.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.Font.BackColor">
            <summary>
            Returns or sets the background color that is applied
            to the area behind the text.
            </summary>
            <remarks>
            <p class="body">
            The default color value can be reinstated by setting this property to Color.Empty.
            </p>
            <p class="body">
            By default, no color is applied to the area behind the text.
            Use this property to fill the rectangle which encloses the text
            area with a particular color, i.e., to "highlight" the text.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.Font.Effects">
            <summary>
            Returns a
            <see cref="T:Infragistics.Documents.Word.FontEffects">FontEffects</see>
            instance which provides extended formatting functionality
            for the font.
            </summary>
            <remarks>
            <p class="body">
            To reduce the memory footprint, creation of the FontEffects object
            returned from this property is deferred until it is requested publicly
            by a consumer. To avoid triggering creation, use the
            <see cref="P:Infragistics.Documents.Word.Font.HasEffects">HasEffects</see>
            property before accessing this property.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.Font.HasEffects">
            <summary>
            Returns a boolean value indicating whether the
            <see cref="T:Infragistics.Documents.Word.FontEffects">FontEffects</see>
            instance returned from the 
            <see cref="P:Infragistics.Documents.Word.Font.Effects">Effects</see>
            property has been created.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.Font.Italic">
            <summary>
            Returns or sets a boolean value indicating whether the font is italicized.
            </summary>
            <remarks>
            <p class="body">
            When not explicitly set, the actual value of the property is determined
            at a higher level of the property resolution hierarchy.
            </p>
            <p class="body">
            This property can be restored to its default value by setting it to null.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.Font.Name">
            <summary>
            Returns or sets the name of the font.
            </summary>
            <remarks>
            <p class="body">
            When not explicitly set, the actual value of the property is determined
            at a higher level of the property resolution hierarchy.
            </p>
            <p class="body">
            This property can be restored to its default value by setting it to null or an empty string.
            </p>
            <p class="body">
            ASCII characters within the range of 0 through 127 are displayed
            with the font associated with the value of this property. Other fonts
            can be designated for use with character sets outside the standard
            ASCII range using the following properties:
            <ul>
                <li><see cref="P:Infragistics.Documents.Word.Font.NameComplexScript">NameComplexScript</see></li>
                <li><see cref="P:Infragistics.Documents.Word.Font.NameEastAsia">NameEastAsia</see></li>
                <li><see cref="P:Infragistics.Documents.Word.Font.NameHighAnsi">NameHighAnsi</see></li>
            </ul>
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.Font.NameComplexScript">NameComplexScript</seealso>
            <seealso cref="P:Infragistics.Documents.Word.Font.NameEastAsia">NameEastAsia</seealso>
            <seealso cref="P:Infragistics.Documents.Word.Font.NameHighAnsi">NameHighAnsi</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.Font.NameComplexScript">
            <summary>
            Returns or sets the font which is used to format all characters
            in a complex script Unicode range within the associated run.
            </summary>
            <remarks>
            <p class="body">
            If this property is not explicitly set, the text is displayed in
            a default font which supports complex script content.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.Font.NameEastAsia">
            <summary>
            Returns or sets the font which is used to format all characters
            in an East Asian Unicode range within the associated run.
            </summary>
            <remarks>
            <p class="body">
            If this property is not explicitly set, the text is displayed in
            a default font which supports East Asian content.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.Font.NameHighAnsi">
            <summary>
            Returns or sets the font which is used to format all characters
            in a Unicode range within the associated run which does not fall
            into any of the categories defined by the
            <see cref="P:Infragistics.Documents.Word.Font.Name">Name</see>,
            <see cref="P:Infragistics.Documents.Word.Font.NameComplexScript">NameComplexScript</see>,
            or
            <see cref="P:Infragistics.Documents.Word.Font.NameEastAsia">NameEastAsia</see>
            properties.
            </summary>
            <remarks>
            <p class="body">
            If this property is not explicitly set, the text is displayed in
            a default font which supports high ANSI content.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.Font.Size">
            <summary>
            Returns or sets the size at which the font is displayed.
            </summary>
            <remarks>
            <p class="body">
            The value assigned to this property must be a value between the
            range of 1 and 1638 DTPs (desktop publishing points), inclusive.
            </p>
            <p class="body">
            The unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property of the associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </p>
            <p class="body">
            This property can be restored to its default value by setting it to null.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.Font.Underline">
            <summary>
            Returns or sets a value indicating the manner in which the font is underlined.
            </summary>
            <remarks>
            <p class="body">
            When not explicitly set, the actual value of the property is determined
            at a higher level of the property resolution hierarchy.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.Font.UnderlineColor">
            <summary>
            Returns or sets the color of the line drawn under the text.
            </summary>
            <remarks>
            <p class="body">
            The default underline color value can be reinstated by setting this property to Color.Empty.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.Font.RightToLeft">
            <summary>
            Returns or sets a value which determines the reading order for the
            associated run of text.
            </summary>
            <remarks>
            <p class="body">
            This setting determines the manner in which the run contents are presented
            in the document when punctuation characters are part of the run's contents.
            When this property is specified, each part of the run between a punctuation
            mark is laid out in a right-to-left direction on the line.
            </p>
            <p class="body">
            Typically the developer will also set the RightToLeft property on the
            <see cref="T:Infragistics.Documents.Word.ParagraphProperties">ParagraphProperties</see>
            instance for the paragraph to which this run belongs when using this property.
            </p>
            <p class="body">
            Setting this property to true will cause the serialization layer to add
            complex script XML elements for the
            <see cref="P:Infragistics.Documents.Word.Font.Bold">Bold</see>,
            <see cref="P:Infragistics.Documents.Word.Font.Italic">Italic</see>,
            and
            <see cref="P:Infragistics.Documents.Word.Font.Size">Size</see>
            properties to the output document. This behavior can be overridden
            by explicitly setting the 
            <see cref="P:Infragistics.Documents.Word.Font.UseComplexScript">UseComplexScript</see>
            property to false.
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.Font.UseComplexScript">UseComplexScript</seealso>
            <seealso cref="P:Infragistics.Documents.Word.ParagraphProperties.RightToLeft">RightToLeft (ParagraphProperties class)</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.Font.UseComplexScript">
            <summary>
            Returns or sets a value which determines whether the contents of this run
            shall be treated as complex script text regardless of the Unicode character
            values contained therein when determining the formatting for this run.
            </summary>
            <remarks>
            <p class="body">
            WordprocessingML uses different XML elements to express the bold, italic,
            and size attributes of the font for standard and complex scripts. When the
            <see cref="P:Infragistics.Documents.Word.Font.NameComplexScript">NameComplexScript</see>
            property is explicitly set, the complex scripts elements are automatically added.
            </p>
            <p class="body">
            This property causes the text contained within the associated run to be treated
            as complex script, effectively resolving any ambiguities that may arise by virtue
            of the bold, italic, or size attributes being set for both standard and complex
            scripts.
            </p>
            </remarks>
        </member>
        <member name="T:Infragistics.Documents.Word.FontEffects">
            <summary>
            Encapsulates the various effects that can be applied to a
            <see cref="T:Infragistics.Documents.Word.Font">Font</see>, such as
            capitalization, strikethrough, subscript/superscript, and
            text effects such as engraving and embossing.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.FontEffects.Reset">
            <summary>
            Restores all property values for this instance to
            their respective defaults.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.FontEffects.MergeProperties(Infragistics.Documents.Word.FontEffects@)">
            <summary>
            Merges the property values that are explicitly set on this instance
            into the same properties on the <paramref name="destination"/> instance
            if they are not explicitly set on the destination instance.
            </summary>
            <param name="destination">The instance to which the property values are assigned.</param>
        </member>
        <member name="M:Infragistics.Documents.Word.FontEffects.MergeProperties(Infragistics.Documents.Word.FontEffects,Infragistics.Documents.Word.FontEffects@)">
            <summary>
            Merges the property values that are explicitly set on the
            <paramref name="source"/> instance into the same properties
            on the <paramref name="destination"/> instance if they are
            not explicitly set on the destination instance.
            </summary>
            <param name="source">The instance from which the property values are copied.</param>
            <param name="destination">The instance to which the property values are assigned.</param>
        </member>
        <member name="P:Infragistics.Documents.Word.FontEffects.Capitalization">
            <summary>
            Returns or sets a value indicating whether the font is
            displayed in normal or small capitalized letters.
            </summary>
            <remarks>
            <p class="body">
            When not explicitly set, the actual value of the property is determined
            at a higher level of the property resolution hierarchy.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.FontEffects.TextEffect">
            <summary>
            Returns or sets a value indicating whether the font appears
            embossed, engraved, or outlined.
            </summary>
            <remarks>
            <p class="body">
            When not explicitly set, the actual value of the property is determined
            at a higher level of the property resolution hierarchy.
            </p>
            <p class="body">
            When the embossing or engraving effect is enabled, the
            <see cref="P:Infragistics.Documents.Word.FontEffects.Shadow">Shadow</see>
            property is not applicable; shadowing cannot be applied in conjunction
            with either the embossing or engraving effect.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.FontEffects.Hidden">
            <summary>
            Returns or sets a boolean value indicating whether the text is hidden.
            </summary>
            <remarks>
            <p class="body">
            When not explicitly set, the actual value of the property is determined
            at a higher level of the property resolution hierarchy.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.FontEffects.Shadow">
            <summary>
            Returns or sets a boolean value indicating whether a shadow
            is drawn around the text.
            </summary>
            <remarks>
            <p class="body">
            When not explicitly set, the actual value of the property is determined
            at a higher level of the property resolution hierarchy.
            </p>
            <p class="body">
            The Shadow property is not applicable when the
            <see cref="P:Infragistics.Documents.Word.FontEffects.TextEffect">TextEffect</see>
            property is set to enable embossing or engraving.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.FontEffects.StrikeThrough">
            <summary>
            Returns or sets a boolean value indicating whether a single
            or double line is drawn through the text.
            </summary>
            <remarks>
            <p class="body">
            When not explicitly set, the actual value of the property is determined
            at a higher level of the property resolution hierarchy.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.FontEffects.VerticalAlignment">
            <summary>
            Returns or sets a value indicating whether the text
            is drawn in small letters above or below the baseline,
            i.e., in subscript or superscript.
            </summary>
            <remarks>
            <p class="body">
            When not explicitly set, the actual value of the property is determined
            at a higher level of the property resolution hierarchy.
            </p>
            </remarks>
        </member>
        <member name="T:Infragistics.Documents.Word.FontCharacterSpacing">
            <summary>
            Encapsulates the spacing and kerning properties of a
            <see cref="T:Infragistics.Documents.Word.Font">Font</see>.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontCharacterSpacing.KerningMinValue">
            <summary>
            The minimum allowable value for the
            <see cref="P:Infragistics.Documents.Word.FontCharacterSpacing.Kerning">Kerning</see>
            property, expressed in twips (20)
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontCharacterSpacing.KerningMaxValue">
            <summary>
            The maximum allowable value for the
            <see cref="P:Infragistics.Documents.Word.FontCharacterSpacing.Kerning">Kerning</see>
            property, expressed in twips (32760)
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontCharacterSpacing.ScalingMinValue">
            <summary>
            The minimum allowable value for the
            <see cref="P:Infragistics.Documents.Word.FontCharacterSpacing.Scaling">Scaling</see>
            property, expressed as a percentage (1%)
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontCharacterSpacing.ScalingMaxValue">
            <summary>
            The maximum allowable value for the
            <see cref="P:Infragistics.Documents.Word.FontCharacterSpacing.Scaling">Scaling</see>
            property, expressed as a percentage (600%)
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontCharacterSpacing.SpacingMinValue">
            <summary>
            The minimum allowable value for the
            <see cref="P:Infragistics.Documents.Word.FontCharacterSpacing.Spacing">Spacing</see>
            property, expressed in twips (-31680)
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontCharacterSpacing.SpacingMaxValue">
            <summary>
            The maximum allowable value for the
            <see cref="P:Infragistics.Documents.Word.FontCharacterSpacing.Spacing">Spacing</see>
            property, expressed in twips (31680)
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontCharacterSpacing.PositionMaxValue">
            <summary>
            The maximum allowable value for the
            <see cref="P:Infragistics.Documents.Word.FontCharacterSpacing.Position">Position</see>
            property, expressed in twips (31680)
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontCharacterSpacing.PositionMinValue">
            <summary>
            The minimum allowable value for the
            <see cref="P:Infragistics.Documents.Word.FontCharacterSpacing.Position">Position</see>
            property, expressed in twips (31680)
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.FontCharacterSpacing.Reset">
            <summary>
            Restores all property values for this instance to
            their respective defaults.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.FontCharacterSpacing.MergeProperties(Infragistics.Documents.Word.FontCharacterSpacing@)">
            <summary>
            Merges the property values that are explicitly set on this instance
            into the same properties on the <paramref name="destination"/> instance
            if they are not explicitly set on the destination instance.
            </summary>
            <param name="destination">The instance to which the property values are assigned.</param>
        </member>
        <member name="M:Infragistics.Documents.Word.FontCharacterSpacing.MergeProperties(Infragistics.Documents.Word.FontCharacterSpacing,Infragistics.Documents.Word.FontCharacterSpacing@)">
            <summary>
            Merges the property values that are explicitly set on the
            <paramref name="source"/> instance into the same properties
            on the <paramref name="destination"/> instance if they are
            not explicitly set on the destination instance.
            </summary>
            <param name="source">The instance from which the property values are copied.</param>
            <param name="destination">The instance to which the property values are assigned.</param>
        </member>
        <member name="P:Infragistics.Documents.Word.FontCharacterSpacing.Kerning">
            <summary>
            Returns or sets a value indicating the size at which kerning algorithms are
            applied to the font.
            </summary>
            <remarks>
            <p class="body">
            The value assigned to this property must be a value between the
            range of 1 and 1638 DTPs (desktop publishing points), inclusive.
            </p>
            <p class="body">
            The unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property of the associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.FontCharacterSpacing.Scaling">
            <summary>
            Returns or sets a value indicating the horizontal scaling
            percentage for the associated font.
            </summary>
            <remarks>
            <p class="body">
            The value assigned to this property must be between the range of 1 and 600, inclusive.
            </p>
            <p class="body">
            This property represents the percentage of scaling, with a value of 100
            representing the default scaling for the font. Values less than 100 cause
            the font to be horizontally compressed; Values greater than 100 cause the
            font to be horizontally elongated.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.FontCharacterSpacing.Spacing">
            <summary>
            Returns or sets a value indicating the amount of horizontal spacing
            between characters for the associated font.
            </summary>
            <remarks>
            <p class="body">
            The value assigned to this property must be a value between the
            range of -1584 and +1584 DTPs (desktop publishing points), inclusive.
            </p>
            <p class="body">
            This property represents the amount of space that appears between horizontally adjacent characters.
            </p>
            <p class="body">
            The unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property of the associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.FontCharacterSpacing.Position">
            <summary>
            Returns or sets a value indicating the amount by which the text is
            vertically offset from the baseline for the associated font.
            </summary>
            <remarks>
            <p class="body">
            The value assigned to this property must be a value between the
            range of -1584 and +1584 DTPs (desktop publishing points), inclusive.
            A value of zero restores the position to normal as relative to the baseline.
            </p>
            <p class="body">
            This property represents the amount of vertical space between the
            bottom of the character and the baseline for the associated font.
            Positive values cause characters to appear higher than characters
            whose position is normal as relative to the baseline; negative values
            cause characters to appear lower.
            </p>
            <p class="body">
            The unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property of the associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </p>
            </remarks>
        </member>
        <member name="T:Infragistics.Documents.Word.Padding">
            <summary>
            Structure used to store padding.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.#ctor(System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Creates a new instance
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.Reset">
            <summary>
            Restores all property values to their respective defaults.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.PadAll(System.Single)">
            <summary>
            Returns an instance with all properties set to the
            specified <paramref name="value"/>.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.PadLeft(System.Single)">
            <summary>
            Returns an instance whose Left property is set to the
            specified <paramref name="value"/>, with all other
            properties set to zero.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.PadRight(System.Single)">
            <summary>
            Returns an instance whose Right property is set to the
            specified <paramref name="value"/>, with all other
            properties set to zero.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.PadTop(System.Single)">
            <summary>
            Returns an instance whose Top property is set to the
            specified <paramref name="value"/>, with all other
            properties set to zero.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.PadBottom(System.Single)">
            <summary>
            Returns an instance whose Bottom property is set to the
            specified <paramref name="value"/>, with all other
            properties set to zero.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.PadHorizontal(System.Single)">
            <summary>
            Returns an instance whose Left and Right properties are set to the
            specified <paramref name="value"/>, with all other properties set to zero.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.PadVertical(System.Single)">
            <summary>
            Returns an instance whose Top and Bottom properties are set to the
            specified <paramref name="value"/>, with all other properties set to zero.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.ToString">
            <summary>
            Returns the string representation of this object.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.Equals(System.Object)">
            <summary>
            Indicates whether this instance and a specified object are equal.
            </summary>
            <param name="obj">Another object to compare to.</param>
            <returns>true if obj and this instance are the same type and represent the same value; otherwise, false.</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.GetHashCode">
            <summary>
            Returns the hash code for this instance.
            </summary>
            <returns>A 32-bit signed integer that is the hash code for this instance.</returns>
        </member>
        <member name="P:Infragistics.Documents.Word.Padding.Top">
            <summary>Returns the padding as relative to the top.</summary>
        </member>
        <member name="P:Infragistics.Documents.Word.Padding.Left">
            <summary>Returns the padding as relative to the left.</summary>
        </member>
        <member name="P:Infragistics.Documents.Word.Padding.Bottom">
            <summary>Returns the padding as relative to the bottom.</summary>
        </member>
        <member name="P:Infragistics.Documents.Word.Padding.Right">
            <summary>Returns the padding as relative to the right.</summary>
        </member>
        <member name="P:Infragistics.Documents.Word.Padding.Empty">
            <summary>
            Returns a Padding instance whose Top, Left, Right, and Bottom
            are all set to zero.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.Padding.PaddingConverter">
            <summary>
            Provides a type converter to convert <see cref="T:Infragistics.Documents.Word.Padding"/> values to and from various other representations.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.PaddingConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            Returns whether this converter can convert an object of the given type to the type of this converter, using the specified context.                        
            </summary>
            <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
            <param name="sourceType">A <see cref="T:System.Type"/> that represents the type you want to convert from.</param>
            <returns>true if this converter can perform the conversion; otherwise, false.</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.PaddingConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            Returns whether this converter can convert the object to the specified type, using the specified context.
            </summary>
            <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
            <param name="destinationType">A <see cref="T:System.Type"/> that represents the type you want to convert to.</param>
            <returns>true if this converter can perform the conversion; otherwise, false.</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.PaddingConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
            <summary>
            Converts the given object to the type of this converter, using the specified context and culture information.
            </summary>
            <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
            <param name="culture">The <see cref="T:System.Globalization.CultureInfo"/> to use as the current culture.</param>
            <param name="value">The <see cref="T:System.Object"/> to convert.</param>
            <returns>An <see cref="T:System.Object"/> that represents the converted value.</returns>
            <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.PaddingConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
            <summary>
            Converts the given value object to the specified type, using the specified and culture information.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="culture"> A System.Globalization.CultureInfo. If null is passed, the current culture is assumed.</param>
            <param name="value">The System.Object to convert.</param>
            <param name="destinationType">The System.Type to convert the value parameter to.</param>
            <returns>An System.Object that represents the converted value.</returns>
            <exception cref="T:System.ArgumentNullException">The destinationType parameter is null.</exception>
            <exception cref="T:System.NotSupportedException">The conversion cannot be performed.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.PaddingConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)">
            <summary>
            Creates an instance of the type that this <see cref="T:System.ComponentModel.TypeConverter"/> is associated with, using the specified context, given a set of property values for the object.
            </summary>
            <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
            <param name="propertyValues">An <see cref="T:System.Collections.IDictionary"/> of new property values.</param>
            <returns>An <see cref="T:System.Object"/> representing the given System.Collections.IDictionary, or null if the object cannot be created. This method always returns null.</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.PaddingConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            Returns whether changing a value on this object requires a call to <see cref="M:System.ComponentModel.TypeConverter.CreateInstance(System.Collections.IDictionary)"/> to create a new value, using the specified context.
            </summary>
            <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
            <returns> true if changing a property on this object requires a call to <see cref="M:System.ComponentModel.TypeConverter.CreateInstance(System.Collections.IDictionary)"/> to create a new value; otherwise, false.</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.PaddingConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])">
            <summary>
            Returns a collection of properties for the type of array specified by the value parameter, using the specified context and attributes.
            </summary>
            <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
            <param name="value">An <see cref="T:System.Object"/> that specifies the type of array for which to get properties.</param>
            <param name="attributes">An array of type <see cref="T:System.Attribute"/> that is used as a filter.</param>
            <returns>A <see cref="T:System.ComponentModel.PropertyDescriptorCollection"/> with the properties that are exposed for this data type, or null if there are no properties.</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.Padding.PaddingConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            Returns whether this object supports properties, using the specified context.
            </summary>
            <param name="context">An <see cref="T:System.ComponentModel.ITypeDescriptorContext"/> that provides a format context.</param>
            <returns>true if <see cref="M:System.ComponentModel.TypeConverter.GetProperties(System.Object)"/> should be called to find the properties of this object; otherwise, false.</returns>
        </member>
        <member name="T:Infragistics.Documents.Word.ParagraphPropertiesBase">
            <summary>
            Provides a way to control formatting for a paragraph or table
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ParagraphPropertiesBase.IndentMaxValue">
            <summary>
            Returns the maximum allowable value for the
            <see cref="P:Infragistics.Documents.Word.ParagraphPropertiesBase.LeftIndent">LeftIndent</see>
            and
            <see cref="P:Infragistics.Documents.Word.ParagraphProperties.RightIndent">RightIndent</see>
            property, expressed in twentieths of a point (31,680).
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.ParagraphPropertiesBase.Reset">
            <summary>
            Restores all property values for this instance to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.ParagraphPropertiesBase.Alignment">
            <summary>
            Returns or sets a value which determines the horizontal alignment
            for the associated paragraph or table.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.ParagraphPropertiesBase.LeftIndent">
            <summary>
            Returns or sets a value which determines the indentation
            from the left margin for the associated paragraph or table.
            </summary>
            <remarks>
            <p class="body">
            For tables, the LeftIndent property is not applicable when the
            <see cref="P:Infragistics.Documents.Word.ParagraphPropertiesBase.Alignment">Alignment</see>
            property is set to 'Center' or 'Right'.
            </p>
            </remarks>
            <seealso cref="F:Infragistics.Documents.Word.ParagraphPropertiesBase.IndentMaxValue">IndentMaxValue</seealso>
        </member>
        <member name="T:Infragistics.Documents.Word.ParagraphProperties">
            <summary>
            Provides a way to control formatting for a paragraph.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ParagraphProperties.SpacingMinValue">
            <summary>
            Returns the maximum allowable value for the line spacing
            properties, expressed in twentieths of a point (-20).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ParagraphProperties.SpacingMaxValue">
            <summary>
            Returns the maximum allowable value for the line spacing
            properties, expressed in twentieths of a point (31,680).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ParagraphProperties.LineSpacingAutoMaxValue">
            <summary>
            Returns the maximum allowable value for the
            <see cref="P:Infragistics.Documents.Word.ParagraphProperties.LineSpacingAuto">LineSpacingAuto</see>
            property, expressed as an integral number of lines (132 lines).
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.ParagraphProperties.Create(Infragistics.Documents.Word.WordDocumentWriter)">
            <summary>
            Returns a new instance which is associated with the specified
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </summary>
            <param name="writer">
            The associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            instance.
            </param>
            <returns>
            A new
            <see cref="T:Infragistics.Documents.Word.ParagraphProperties">ParagraphProperties</see>
            instance.
            </returns>
        </member>
        <member name="M:Infragistics.Documents.Word.ParagraphProperties.Reset">
            <summary>
            Restores all property values for this instance to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.ParagraphProperties.RightIndent">
            <summary>
            Returns or sets a value which determines the indentation
            from the right margin for the associated paragraph.
            </summary>
            <remarks>
            <p class="body">
            The unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property of the associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </p>
            </remarks>
            <seealso cref="F:Infragistics.Documents.Word.ParagraphPropertiesBase.IndentMaxValue">IndentMaxValue</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.ParagraphProperties.SpacingBefore">
            <summary>
            Returns or sets a value which determines the amount of spacing
            that appears above the paragraph.
            </summary>
            <remarks>
            <p class="body">
            The unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property of the associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </p>
            </remarks>
            <seealso cref="F:Infragistics.Documents.Word.ParagraphProperties.SpacingMinValue">SpacingMinValue</seealso>
            <seealso cref="F:Infragistics.Documents.Word.ParagraphProperties.SpacingMaxValue">SpacingMaxValue</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.ParagraphProperties.SpacingAfter">
            <summary>
            Returns or sets a value which determines the amount of spacing
            that appears after the last line of the associated paragraph.
            </summary>
            <remarks>
            <p class="body">
            The unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property of the associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </p>
            </remarks>
            <seealso cref="F:Infragistics.Documents.Word.ParagraphProperties.SpacingMinValue">SpacingMinValue</seealso>
            <seealso cref="F:Infragistics.Documents.Word.ParagraphProperties.SpacingMaxValue">SpacingMaxValue</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.ParagraphProperties.LineSpacingExact">
            <summary>
            Returns or sets a value which determines the exact amount of
            vertical spacing that appears between lines of text in the associated
            paragraph.
            </summary>
            <remarks>
            <p class="body">
            The LineSpacingExact,
            <see cref="P:Infragistics.Documents.Word.ParagraphProperties.LineSpacingMinimum">LineSpacingMinimum</see>,
            and
            <see cref="P:Infragistics.Documents.Word.ParagraphProperties.LineSpacingAuto">LineSpacingAuto</see>
            properties are mutually exclusive; when one property is set, the others are not applicable.
            </p>
            <p class="body">
            In the case where more than one of the properties is explicitly set,
            the order of precedence is as follows:
            <ul>
            <li>LineSpacingExact</li>
            <li>LineSpacingMinimum</li>
            <li>LineSpacingAuto</li>
            </ul>
            </p>
            <p class="body">
            The unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property of the associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </p>
            </remarks>
            <seealso cref="F:Infragistics.Documents.Word.ParagraphProperties.SpacingMaxValue">SpacingMaxValue</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.ParagraphProperties.LineSpacingMinimum">
            <summary>
            Returns or sets a value which determines the minimum amount of
            vertical spacing that appears between lines of text in the associated
            paragraph. Applicable only when the
            <see cref="P:Infragistics.Documents.Word.ParagraphProperties.LineSpacingExact">LineSpacingExact</see>
            property is not explicitly set.
            </summary>
            <remarks>
            <p class="body">
            The
            <see cref="P:Infragistics.Documents.Word.ParagraphProperties.LineSpacingExact">LineSpacingExact</see>,
            The LineSpacingMinimum,
            and
            <see cref="P:Infragistics.Documents.Word.ParagraphProperties.LineSpacingAuto">LineSpacingAuto</see>
            properties are mutually exclusive; when one property is set, the others are not applicable.
            </p>
            <p class="body">
            In the case where more than one of the properties is explicitly set,
            the order of precedence is as follows:
            <ul>
            <li>LineSpacingExact</li>
            <li>LineSpacingMinimum</li>
            <li>LineSpacingAuto</li>
            </ul>
            </p>
            <p class="body">
            The unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property of the associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </p>
            </remarks>
            <seealso cref="F:Infragistics.Documents.Word.ParagraphProperties.SpacingMaxValue">SpacingMaxValue</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.ParagraphProperties.LineSpacingAuto">
            <summary>
            Returns or sets a value which determines the amount of
            vertical spacing that appears between lines of text in the associated
            paragraph, expressed as a multiple of the line height for the paragraph.
            Applicable only when the
            <see cref="P:Infragistics.Documents.Word.ParagraphProperties.LineSpacingExact">LineSpacingExact</see>
            and
            <see cref="P:Infragistics.Documents.Word.ParagraphProperties.LineSpacingMinimum">LineSpacingMinimum</see>
            properties are not explicitly set.
            </summary>
            <remarks>
            <p class="body">
            The LineSpacingAuto property provides a way for the developer to space lines
            such that the actual value is automatically calculated by the document
            consumer based on the line height for the associated paragraph. An explicit
            value can be specified for line spacing using the
            <see cref="P:Infragistics.Documents.Word.ParagraphProperties.LineSpacingExact">LineSpacingExact</see>
            property.
            </p>
            <p class="body">
            The
            <see cref="P:Infragistics.Documents.Word.ParagraphProperties.LineSpacingExact">LineSpacingExact </see>,
            <see cref="P:Infragistics.Documents.Word.ParagraphProperties.LineSpacingMinimum">LineSpacingMinimum</see>
            and LineSpacingAuto properties are mutually exclusive; when one property is set, the others are not applicable.
            </p>
            <p class="body">
            In the case where more than one of the properties is explicitly set,
            the order of precedence is as follows:
            <ul>
            <li>LineSpacingExact</li>
            <li>LineSpacingMinimum</li>
            <li>LineSpacingAuto</li>
            </ul>
            </p>
            <p class="body">
            Unlike the LineSpacingExact and LineSpacingMinimum properties,
            this property's value is always expressed as a multiple
            of the line height for the paragraph, and is never converted
            based on the value of the associated WordDocumentWriter's 
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property.
            </p>
            <p class="body">
            For example, to apply vertical spacing between lines of text that
            is equal to .5 times the height of the line itself, assign a value
            of .5 to the LineSpacingAuto property, and leave the values of the
            LineSpacingExact and LineSpacingMinimum properties at their respective
            defaults.
            </p>
            </remarks>
            <seealso cref="F:Infragistics.Documents.Word.ParagraphProperties.LineSpacingAutoMaxValue">LineSpacingAutoMaxValue</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.ParagraphProperties.PageBreakBefore">
            <summary>
            Returns or sets a value which determines whether a page break
            is inserted before the associated paragraph.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.ParagraphProperties.RightToLeft">
            <summary>
            Returns or sets a value which determines whether the paragraph
            is presented in a right-to-left direction.
            </summary>
            <remarks>
            <p class="body">
            This property only applies to paragraph-level properties, and does not
            affect the layout of the text within. Setting this property to true has
            an effect similar to that of setting the
            <see cref="P:Infragistics.Documents.Word.ParagraphPropertiesBase.Alignment">Alignment</see>
            property to 'Right'.
            </p>
            <p class="body">
            To change the layout of the text within the paragraph, use the
            <see cref="P:Infragistics.Documents.Word.Font.RightToLeft">RightToLeft</see>
            property of the
            <see cref="T:Infragistics.Documents.Word.Font">Font</see>
            class.
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.Font.RightToLeft">RightToLeft</seealso>
        </member>
        <member name="T:Infragistics.Documents.Word.SectionProperties">
            <summary>
            Provides a way to control page attributes such as size, margins, and orientation.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.SectionProperties.Create(Infragistics.Documents.Word.WordDocumentWriter)">
            <summary>
            Returns a new instance which is associated with the specified
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </summary>
            <param name="writer">
            The associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            instance.
            </param>
            <returns>
            A new
            <see cref="T:Infragistics.Documents.Word.SectionProperties">SectionProperties</see>
            instance.
            </returns>
        </member>
        <member name="M:Infragistics.Documents.Word.SectionProperties.Reset">
            <summary>
            Restores all property values for this instance to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.SectionProperties.PageSize">
            <summary>
            Returns or sets the size for all pages in the associated section.
            </summary>
            <remarks>
            <p class="body">
            When set explicitly, the unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property.
            </p>
            <p class="body">
            When the
            <see cref="P:Infragistics.Documents.Word.SectionProperties.PageOrientation">PageOrientation</see>
            property is left at its default setting, the PageSize property defines the effective
            orientation. In cases where the width is greater than the height, the PageOrientation property
            resolves to 'Landscape'.
            </p>
            <p class="body">
            In the absence of an explicit setting, this property resolves to a value
            that is equal to 8.5 inches in width by 11 inches in height, or, if the
            PageOrientation property is explicitly set to 'Landscape', 11" x 8.5".
            </p>
            <p class="body">
            The maximum page size in MS Word is 22" x 22" (see
            <a href="http://support.microsoft.com/kb/95109">KB article 95109</a>).
            An exception is thrown if the specified value is outside this range.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.SectionProperties.PageMargins">
            <summary>
            Returns or sets the margins for all pages in the associated section.
            </summary>
            <remarks>
            <p class="body">
            In the absence of an explicit setting, this property resolves to a value
            that is equal to one inch on all sides.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.SectionProperties.HeaderMargin">
            <summary>
            Returns or sets the distance between the top edge of the page and the top edge of the header.
            </summary>
            <remarks>
            <p class="body">
            When set explicitly, the unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property.
            </p>
            <p class="body">
            In the absence of an explicit setting, this property resolves to .5".
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.SectionProperties.FooterMargin">
            <summary>
            Returns or sets the distance between the top edge of the page and the top edge of the footer.
            </summary>
            <remarks>
            <p class="body">
            When set explicitly, the unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property.
            </p>
            <p class="body">
            In the absence of an explicit setting, this property resolves to .5".
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.SectionProperties.PaperCode">
            <summary>
            Returns or sets a value which represents a printer-specific paper code
            for the paper type for all pages in the associated section.
            </summary>
            <remarks>
            <p class="body">
            This property is used to ensure that the proper paper type is chosen if the
            specified paper size matches the sizes of multiple paper types supported by
            the current printer. How this value is consumed is dependent solely on the printer,
            and is not interpreted or modified in any way by this class.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.SectionProperties.PageOrientation">
            <summary>
            Returns or sets a value which defines the orientation for all
            pages in the associated section.
            </summary>
            <remarks>
            <p class="body">
            Under the default setting, the actual value is resolved
            based on the ratio of the width to the height of the page size. If
            the width is greater than the height, this property resolves to
            'Landscape', otherwise it resolves to 'Portrait'.
            </p>
            <p class="body">
            When the PageOrientation property is explicitly set, the value of the
            <see cref="P:Infragistics.Documents.Word.SectionProperties.PageSize">PageSize</see>
            property is adjusted if necessary so that the ratio of width to height is in agreement
            with the page orientation. For example, if the page size is explicitly set to have a
            width of five inches and a height of seven, and PageOrientation is explicitly set to
            'Landscape', the page size is inverted so as not to contradict the orientation.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.SectionProperties.StartingPageNumber">
            <summary>
            Returns or sets the page number for the first page in this section.
            </summary>
            <remarks>
            <p class="body">
            This property is only applicable when a header/footer is
            defined for the section. Headers/footers can be created using the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddSectionHeaderFooter(Infragistics.Documents.Word.SectionHeaderFooterParts,Infragistics.Documents.Word.SectionProperties)">AddSectionHeaderFooter</see>
            method.
            </p>
            <p class="body">
            Page numbers can be specified for a header or footer using the
            <see cref="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddPageNumberField(Infragistics.Documents.Word.PageNumberFieldFormat)">AddPageNumberField</see>
            method.
            </p>
            <p class="body">
            When no value is specified for this property, page numbers continue
            from the previous section.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.FromParagraphAlignment(Infragistics.Documents.Word.ParagraphAlignment)">
            <summary>
            ParagraphAlignment -> ST_Jc
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.ToParagraphAlignment(System.String)">
            <summary>
            ST_Jc -> ParagraphAlignment.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.FromUnderline(Infragistics.Documents.Word.Underline)">
            <summary>
            Underline -> ST_Underline
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.ToUnderline(System.String)">
            <summary>
            ST_Underline -> Underline
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.FromRelativeHorizontalPosition(Infragistics.Documents.Word.AnchorRelativeHorizontalPosition)">
            <summary>
            RelativeHorizontalPosition -> ST_RelFromH
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.ToRelativeHorizontalPosition(System.String)">
            <summary>
            ST_RelFromH -> RelativeHorizontalPosition
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.FromRelativeVerticalPosition(Infragistics.Documents.Word.AnchorRelativeVerticalPosition)">
            <summary>
            RelativeVerticalPosition -> ST_RelFromV
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.ToRelativeVerticalPosition(System.String)">
            <summary>
            ST_RelFromV -> RelativeVerticalPosition
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.FromHorizontalAlignment(Infragistics.Documents.Word.AnchorHorizontalAlignment)">
            <summary>
            AnchorHorizontalAlignment -> ST_AlignH
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.ToHorizontalAlignment(System.String)">
            <summary>
            ST_AlignH -> AnchorHorizontalAlignment
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.FromAnchorVerticalAlignment(Infragistics.Documents.Word.AnchorVerticalAlignment)">
            <summary>
            AnchorVerticalAlignment -> ST_AlignV
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.ToAnchorVerticalAlignment(System.String)">
            <summary>
            ST_AlignV -> VerticalAlignment
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.FromTableCellVerticalAlignment(Infragistics.Documents.Word.TableCellVerticalAlignment)">
            <summary>
            TableCellVerticalAlignment -> ST_VerticalJc
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.ToTableCellVerticalAlignment(System.String)">
            <summary>
            ST_VerticalJc -> TableCellVerticalAlignment
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.FromTextWrappingSide(Infragistics.Documents.Word.AnchorTextWrappingSide)">
            <summary>
            VerticalAlignment -> ST_WrapText
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.ToTextWrappingSide(System.String)">
            <summary>
            ST_WrapText -> TextWrappingSide
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.FromFontVerticalAlignment(Infragistics.Documents.Word.FontVerticalAlignment)">
            <summary>
            FontVerticalAlignment -> ST_AlignV
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.ToFontVerticalAlignment(System.String)">
            <summary>
            ST_AlignV -> FontVerticalAlignment
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.FromTableCellVerticalMerge(Infragistics.Documents.Word.TableCellVerticalMerge)">
            <summary>
            TableCellVerticalMerge -> ST_Merge
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.ToTableCellVerticalMerge(System.String)">
            <summary>
            ST_Merge -> TableCellVerticalMerge
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.FromLineSpacingRule(Infragistics.Documents.Word.LineSpacingRule)">
            <summary>
            LineSpacingRule -> ST_LineSpacingRule
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.ToLineSpacingRule(System.String)">
            <summary>
            ST_LineSpacingRule -> LineSpacingRule.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.FromRowHeightRule(Infragistics.Documents.Word.RowHeightRule)">
            <summary>
            RowHeightRule -> ST_RowHeightRule
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.ToRowHeightRule(System.String)">
            <summary>
            ST_RowHeightRule -> RowHeightRule.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.FromTableBorderStyle(Infragistics.Documents.Word.TableBorderStyle)">
            <summary>
            TableBorderStyle -> ST_Border
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.ToTableBorderStyle(System.String)">
            <summary>
            ST_Border -> TableBorderStyle.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.FromPictureOutlineStyle(Infragistics.Documents.Word.PictureOutlineStyle)">
            <summary>
            PictureOutlineStyle -> ST_CompoundLine
            (see 5.1.12.15 ST_CompoundLine (Compound Line Type))
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.ToPictureOutlineStyle(System.String)">
            <summary>
            ST_CompoundLine -> PictureOutlineStyle.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.FromTableCellTextDirection(Infragistics.Documents.Word.TableCellTextDirection)">
            <summary>
            TableCellTextDirection -> ST_TextDirection
            (see 2.18.100 ST_TextDirection (Text Flow Direction))
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.ToTableCellTextDirection(System.String)">
            <summary>
            ST_TextDirection -> TableCellTextDirection.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.FromPageNumberFieldFormat(Infragistics.Documents.Word.PageNumberFieldFormat)">
            <summary>
            See: 2.16.4.3 General formatting
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.ToAnchorRelativeVerticalPosition_Vml(System.String)">
            <summary>
            ST_CompoundLine -> AnchorRelativeVerticalPosition.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.EnumConverter.ToAnchorRelativeHorizontalPosition_Vml(System.String)">
            <summary>
            ST_CompoundLine -> AnchorRelativeHorizontalPosition.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.ParagraphAlignment">
            <summary>
            Constants which specify the alignment for a paragraph or table.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ParagraphAlignment.Both">
            <summary>
            Specifies that the text is justified between both
            of the text margins in the document.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ParagraphAlignment.Center">
            <summary>
            Specifies that the text is centered on the line
            between both of the text margins in the document.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ParagraphAlignment.Distribute">
            <summary>
            Specifies that the text is justified between both
            of the text margins in the document.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ParagraphAlignment.HighKashida">
            <summary>
            Specifies that the kashida length for text in the current
            paragraph is extended to its widest possible length.
            Note: This setting only affects <i>kashidas</i>, which are special
            characters used to extend the joiner between two Arabic characters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ParagraphAlignment.Left">
            <summary>
            Specifies that the text is aligned on the left
            text margin in the document.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ParagraphAlignment.LowKashida">
            <summary>
            Specifies that the kashida length for text in the current
            paragraph is extended to a slightly longer length.
            Note: This setting only affects <i>kashidas</i>, which are special
            characters used to extend the joiner between two Arabic characters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ParagraphAlignment.MediumKashida">
            <summary>
            Specifies that the kashida length for text in the current
            paragraph is extended to a medium length determined
            by the consumer.
            Note: This setting only affects <i>kashidas</i>, which are special
            characters used to extend the joiner between two Arabic characters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ParagraphAlignment.NumTab">
            <summary>
            Specifies that the text is aligned to the list tab,
            which is the tab stop after the numbering for the current
            paragraph.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ParagraphAlignment.Right">
            <summary>
            Specifies that the text is aligned on the right
            text margin in the document.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ParagraphAlignment.ThaiDistribute">
            <summary>
            Specifies that the text is justified with an
            optimization for Thai.
            Note: This type of justification affects both the interword
            spacing on each line and the inter-character spacing between each
            word when justifying its contents, unlike the 'Both' setting.
            This difference is created in that the inter-character space
            is increased slightly in order to ensure that the additional space
            created by the justification is reduced.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.UnitOfMeasurement">
            <summary>
            Constants which specify the implied unit of measurement
            for properties which represent a graphical length.
            </summary>
            <remarks>
            <p class="body">
            The default unit of measurement is a desktop publishing point, which
            is equal to 1/72 of an inch.
            </p>
            </remarks>
        </member>
        <member name="F:Infragistics.Documents.Word.UnitOfMeasurement.Point">
            <summary>
            Units are expressed as DTPs (desktop publishing points), a unit
            equal to 1/72 of an inch. One point is equal to 20 twips.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.UnitOfMeasurement.Twip">
            <summary>
            Units are expressed as one-twentieths of a point, or 1/1440 of an inch.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.UnitOfMeasurement.Inch">
            <summary>
            Units are expressed as inches (U.S. customary units).
            One inch is equal to 1,440 twips.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.UnitOfMeasurement.Centimeter">
            <summary>
            Units are expressed as centimeters. One centimeter is equal to
            approximately 567 twips.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.Underline">
            <summary>
            Constants which define the manner in which text is underlined.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.Default">
            <summary>
            The actual value is determined at a higher level of the
            property resolution hierarchy.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.None">
            <summary>
            No underline.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.Dash">
            <summary>
            Specifies an underline consisting of a dashed line
            beneath all characters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.DashDotDotHeavy">
            <summary>
            Specifies an underline consisting of a series of thick
            dash, dot, dot characters beneath all characters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.DashDotHeavy">
            <summary>
            Specifies an underline consisting of a series of thick
            dash, dot characters beneath all characters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.DashedHeavy">
            <summary>
            Specifies an underline consisting of a series of thick
            dashes beneath all characters in this run.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.DashLong">
            <summary>
            Specifies an underline consisting of long dashed
            characters beneath all characters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.DashLongHeavy">
            <summary>
            Specifies an underline consisting of thick long dashed
            characters beneath all characters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.DotDash">
            <summary>
            Specifies an underline consisting of a series of dash,
            dot characters beneath all characters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.DotDotDash">
            <summary>
            Specifies an underline consisting of a series of dash,
            dot, dot characters beneath all characters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.Dotted">
            <summary>
            Specifies an underline consisting of a series of dot
            characters beneath all characters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.DottedHeavy">
            <summary>
            Specifies an underline consisting of a series of thick dot
            characters beneath all characters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.Double">
            <summary>
            Specifies an underline consisting of two lines beneath
            all characters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.Single">
            <summary>
            Specifies an underline consisting of a single line beneath
            all characters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.Thick">
            <summary>
            Specifies an underline consisting of a single thick line
            beneath all characters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.Wave">
            <summary>
            Specifies an underline consisting of a single wavy line
            beneath all characters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.WavyDouble">
            <summary>
            Specifies an underline consisting of a pair of wavy lines
            beneath all characters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.WavyHeavy">
            <summary>
            Specifies an underline consisting of a single thick wavy line
            beneath all characters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Underline.Words">
            <summary>
            Specifies an underline consisting of a single line
            beneath all non-space characters in the run. No underline
            appears beneath any space character (breaking or non-breaking).
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.StrikeThrough">
            <summary>
            Constants which define the manner in which a line
            is drawn through the text.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.StrikeThrough.Default">
            <summary>
            The actual value is determined at a higher level of the
            property resolution hierarchy.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.StrikeThrough.SingleOn">
            <summary>
            A single line is drawn through the text.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.StrikeThrough.SingleOff">
            <summary>
            The 'SingleOn' setting is explicitly disabled for the associated run.
            Use this setting to clear the single strikethough effect for this run
            when the setting is enabled at a higher level of the
            property resolution hierarchy.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.StrikeThrough.DoubleOn">
            <summary>
            A double line is drawn through the text.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.StrikeThrough.DoubleOff">
            <summary>
            The 'DoubleOn' setting is explicitly disabled for the associated run.
            Use this setting to clear the double strikethough effect for this run
            when the setting is enabled at a higher level of the
            property resolution hierarchy.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.Capitalization">
            <summary>
            Constants which define the manner in which characters
            are capitalized.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Capitalization.Default">
            <summary>
            The actual value is determined at a higher level of the
            property resolution hierarchy.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Capitalization.CapsOn">
            <summary>
            Letters are capitalized.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Capitalization.CapsOff">
            <summary>
            The 'CapsOn' setting is explicitly disabled for the associated run.
            Use this setting to clear the captitalization for this run when the
            'CapsOn' setting is enabled at a higher level of the property resolution hierarchy.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Capitalization.SmallCapsOn">
            <summary>
            Lower-case characters in this text run are formatted for display as their
            upper-case character equivalents in a font size two points smaller
            than the resolved font size for the associated run.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.Capitalization.SmallCapsOff">
            <summary>
            The 'SmallCapsOn' setting is explicitly disabled for the associated run.
            Use this setting to clear the captitalization for this run when the
            'SmallCapsOn' setting is enabled at a higher level of the property resolution hierarchy.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.FontVerticalAlignment">
            <summary>
            Constants which define the manner in which characters
            are vertically aligned, i.e., when the characters appear
            in subscript or superscript.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontVerticalAlignment.Default">
            <summary>
            The actual value is determined at a higher level of the
            property resolution hierarchy.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontVerticalAlignment.Baseline">
            <summary>
            Normal; the text is rendered at its normal location
            as relative to the baseline for the associated run.
            Use this setting to clear the subscript or superscript
            effect for this run when either setting is enabled at a
            higher level of the property resolution hierarchy.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontVerticalAlignment.Subscript">
            <summary>
            Text is rendered in a smaller size below the default
            baseline location for the associated run.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontVerticalAlignment.Superscript">
            <summary>
            Text is rendered in a smaller size above the default
            baseline location for the associated run.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.FontTextEffect">
            <summary>
            Constants which define additional special effects
            for the font, i.e., engraved, embossed, outlined,
            or shadowed.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontTextEffect.Default">
            <summary>
            The actual value is determined at a higher level of the
            property resolution hierarchy.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontTextEffect.EmbossingOn">
            <summary>
            The text appears as if it is raised off the page in relief.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontTextEffect.EmbossingOff">
            <summary>
            The 'EmbossingOn' setting is explicitly disabled for the associated run.
            Use this setting to clear the embossing effect for this run when the
            setting is enabled at a higher level of the property resolution hierarchy.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontTextEffect.EngravingOn">
            <summary>
            The text appears as if it is imprinted or pressed into the page.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontTextEffect.EngravingOff">
            <summary>
            The 'EngravingOn' setting is explicitly disabled for the associated run.
            Use this setting to clear the engraving effect for this run when the
            setting is enabled at a higher level of the property resolution hierarchy.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontTextEffect.OutliningOn">
            <summary>
            A border is drawn around the inner and outer borders of
            each character glyph in the run.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.FontTextEffect.OutliningOff">
            <summary>
            The 'OutliningOn' setting is explicitly disabled for the associated run.
            Use this setting to clear the outlining effect for this run when the
            setting is enabled at a higher level of the property resolution hierarchy.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.AnchorRelativeHorizontalPosition">
            <summary>
            Constants which describe a
            <see cref="T:Infragistics.Documents.Word.AnchoredPicture">AnchoredPicture's</see>
            relative horizontal position.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorRelativeHorizontalPosition.Character">
            <summary>
            Specifies that the horizontal positioning is
            relative to the position of the anchor within its run
            content.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorRelativeHorizontalPosition.Column">
            <summary>
            Specifies that the horizontal positioning is
            relative to the extents of the column which contains its
            anchor.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorRelativeHorizontalPosition.InsideMargin">
            <summary>
            Specifies that the horizontal positioning is
            relative to the inside margin of the current page (the
            left margin on odd pages, right on even pages).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorRelativeHorizontalPosition.LeftMargin">
            <summary>
            Specifies that the horizontal positioning is
            relative to the left margin of the page.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorRelativeHorizontalPosition.Margin">
            <summary>
            Specifies that the horizontal positioning is
            relative to the page margins.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorRelativeHorizontalPosition.OutsideMargin">
            <summary>
            Specifies that the horizontal positioning is
            relative to the outside margin of the current page (the
            right margin on odd pages, left on even pages).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorRelativeHorizontalPosition.Page">
            <summary>
            Specifies that the horizontal positioning is
            relative to the edge of the page.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorRelativeHorizontalPosition.RightMargin">
            <summary>
            Specifies that the horizontal positioning is
            relative to the right margin of the page.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.AnchorRelativeVerticalPosition">
            <summary>
            Constants which describe a
            <see cref="T:Infragistics.Documents.Word.AnchoredPicture">AnchoredPicture's</see>
            relative vertical position.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorRelativeVerticalPosition.BottomMargin">
            <summary>
            Specifies that the vertical positioning is relative
            to the bottom margin of the current page.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorRelativeVerticalPosition.InsideMargin">
            <summary>
            Specifies that the vertical positioning is relative
            to the inside margin of the current page.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorRelativeVerticalPosition.Line">
            <summary>
            Specifies that the vertical positioning is relative
            to the line containing the anchor character.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorRelativeVerticalPosition.Margin">
            <summary>
            Specifies that the vertical positioning is relative
            to the page margins.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorRelativeVerticalPosition.OutsideMargin">
            <summary>
            Specifies that the vertical positioning is relative
            to the outside margin of the current page.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorRelativeVerticalPosition.Page">
            <summary>
            Specifies that the vertical positioning is relative
            to the edge of the page.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorRelativeVerticalPosition.Paragraph">
            <summary>
            Specifies that the vertical positioning is relative
            to the paragraph which contains the drawing anchor.
            Note: This value is only supported when an offset is
            explicitly defined.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorRelativeVerticalPosition.TopMargin">
            <summary>
            Specifies that the vertical positioning is relative
            to the top margin of the current page.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.AnchorHorizontalAlignment">
            <summary>
            Constants which describe a
            <see cref="T:Infragistics.Documents.Word.AnchoredPicture">AnchoredPicture's</see>
            horizontal alignment.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorHorizontalAlignment.None">
            <summary>
            No horizontal alignment; the picture's position is specified as an absolute value.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorHorizontalAlignment.Center">
            <summary>
            Specifies that the picture is centered as relative to the
            <see cref="T:Infragistics.Documents.Word.AnchorRelativeHorizontalPosition">RelativeHorizontalPosition</see>.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorHorizontalAlignment.Inside">
            <summary>
            Specifies that the picture is inside as relative to the
            <see cref="T:Infragistics.Documents.Word.AnchorRelativeHorizontalPosition">RelativeHorizontalPosition</see>.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorHorizontalAlignment.Left">
            <summary>
            Specifies that the picture is left-aligned as relative to the
            <see cref="T:Infragistics.Documents.Word.AnchorRelativeHorizontalPosition">RelativeHorizontalPosition</see>.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorHorizontalAlignment.Outside">
            <summary>
            Specifies that the picture is outside as relative to the
            <see cref="T:Infragistics.Documents.Word.AnchorRelativeHorizontalPosition">RelativeHorizontalPosition</see>.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorHorizontalAlignment.Right">
            <summary>
            Specifies that the picture is right-aligned as relative to the
            <see cref="T:Infragistics.Documents.Word.AnchorRelativeHorizontalPosition">RelativeHorizontalPosition</see>.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.AnchorVerticalAlignment">
            <summary>
            Constants which describe a
            <see cref="T:Infragistics.Documents.Word.AnchoredPicture">AnchoredPicture's</see>
            vertical alignment.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorVerticalAlignment.None">
            <summary>
            No vertical alignment; the object's position is specified as an absolute value.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorVerticalAlignment.Bottom">
            <summary>
            Specifies that the object is bottom-aligned as relative to the
            <see cref="T:Infragistics.Documents.Word.AnchorRelativeVerticalPosition">RelativeVerticalPosition</see>.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorVerticalAlignment.Center">
            <summary>
            Specifies that the object is centered as relative to the
            <see cref="T:Infragistics.Documents.Word.AnchorRelativeVerticalPosition">RelativeVerticalPosition</see>.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorVerticalAlignment.Inside">
            <summary>
            Specifies that the object is inside as relative to the
            <see cref="T:Infragistics.Documents.Word.AnchorRelativeVerticalPosition">RelativeVerticalPosition</see>.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorVerticalAlignment.Outside">
            <summary>
            Specifies that the object is outside as relative to the
            <see cref="T:Infragistics.Documents.Word.AnchorRelativeVerticalPosition">RelativeVerticalPosition</see>.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorVerticalAlignment.Top">
            <summary>
            Specifies that the object is at the top as relative to the
            <see cref="T:Infragistics.Documents.Word.AnchorRelativeVerticalPosition">RelativeVerticalPosition</see>.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.TableCellVerticalAlignment">
            <summary>
            Constants which describe the vertical alignment for a table cell.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableCellVerticalAlignment.Default">
            <summary>
            The actual value is determined at a higher level of the property resolution hierarchy.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableCellVerticalAlignment.Bottom">
            <summary>
            Specifies that the text is vertically aligned with the bottom of the cell.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableCellVerticalAlignment.Center">
            <summary>
            Specifies that the text is vertically aligned with the center of the cell.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableCellVerticalAlignment.Top">
            <summary>
            Specifies that the text is vertically aligned with the top of the cell.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.AnchorTextWrapping">
            <summary>
            Constants which define the layout for text included in the same
            paragraph as an
            <see cref="T:Infragistics.Documents.Word.AnchoredPicture">AnchoredPicture</see>.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorTextWrapping.Square">
            <summary>
            Text flows around all sides of the picture.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorTextWrapping.TextInBackground">
            <summary>
            Text does not wrap, and appears "behind" the picture.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorTextWrapping.TextInForeground">
            <summary>
            Text does not wrap, and appears superimposed over the picture.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorTextWrapping.TopAndBottom">
            <summary>
            Text flows along the top and bottom of the picture.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.AnchorTextWrappingSide">
            <summary>
            Constants which define the sides of an
            <see cref="T:Infragistics.Documents.Word.AnchoredPicture">AnchoredPicture</see>
            around which adjacent text can be wrapped.
            </summary>
            <seealso cref="T:Infragistics.Documents.Word.AnchorTextWrapping">TextWrapping enumeration</seealso>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorTextWrappingSide.Both">
            <summary>
            Text wraps around the left and right sides of the picture.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorTextWrappingSide.Left">
            <summary>
            Text wraps around the left side of the picture.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorTextWrappingSide.Right">
            <summary>
            Text wraps around the right side of the picture.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.AnchorTextWrappingSide.Largest">
            <summary>
            Text wraps around the side of the picture that is farthest
            from the page margin.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.TableCellVerticalMerge">
            <summary>
            Constants which describe the manner in which a TableCell
            is vertically merged with adjacent cells.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableCellVerticalMerge.None">
            <summary>
            No vertical merging. The cell appears to span only the row
            to which it belongs.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableCellVerticalMerge.Start">
            <summary>
            Begins a vertical merging run. If the associated cell follows one
            which belongs to a vertical merging run, that run is discontinued.
            If no cells 'above' the associated cell belong to a vertical merging
            run, a new run begins.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableCellVerticalMerge.Continue">
            <summary>
            Continues a previously defined vertical merging run.
            If no cells 'above' the associated cell belong to a vertical merging
            run, this setting has no effect.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.RowHeightRule">
            <summary>
            Constants which describe the rule applied when calculating the height of a table row.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.RowHeightRule.Auto">
            <summary>
            Specifies that the height of the row is automatically
            determined by the size of its contents, with no predetermined minimum
            or maximum size.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.RowHeightRule.AtLeast">
            <summary>
            Specifies that the height of the row is at least
            the value specified, but may be expanded to fit its content as needed.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.RowHeightRule.Exact">
            <summary>
            Specifies that the height of the row is exactly the value
            specified, regardless of the size of its contents. If the
            content is too large for the specified height, it is clipped.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.TableBorderStyle">
            <summary>
            Constants which describe the style of the borders displayed
            around tables and cells.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableBorderStyle.None">
            <summary>
            No borders are displayed.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableBorderStyle.Single">
            <summary>
            A single-line border is displayed.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableBorderStyle.Dashed">
            <summary>
            A dashed-line border is displayed.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableBorderStyle.Dotted">
            <summary>
            A dotted-line border is displayed.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableBorderStyle.Double">
            <summary>
            A double-line border is displayed.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableBorderStyle.Inset">
            <summary>
            A inset-line border is displayed.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.PictureOutlineStyle">
            <summary>
            Constants which describe the style of the outlines displayed
            around anchored and inline pictures.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PictureOutlineStyle.None">
            <summary>
            No outline is displayed around the picture.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PictureOutlineStyle.Single">
            <summary>
            The picture is outlined with a single line.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PictureOutlineStyle.Double">
            <summary>
            The picture is outlined with double lines of equal width.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PictureOutlineStyle.ThinThick">
            <summary>
            The picture is outlined with double lines, one thin and one thick.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PictureOutlineStyle.ThickThin">
            <summary>
            The picture is outlined with double lines, one thick and one thin.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PictureOutlineStyle.Triple">
            <summary>
            The picture is outlined with three lines - thin, thick, and thin.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.PictureOutlineCornerStyle">
            <summary>
            Constants which describe the manner in which the corners
            of a picture outline are joined.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PictureOutlineCornerStyle.Miter">
            <summary>
            The corners of the outline are mitered.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PictureOutlineCornerStyle.Round">
            <summary>
            The corners of the outline are rounded.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PictureOutlineCornerStyle.Bevel">
            <summary>
            The corners of the outline are beveled.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.TableCellTextDirection">
            <summary>
            Constants which describe the direction of text flow for table cells.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableCellTextDirection.Normal">
            <summary>
            Text flows normally, from left to right along the x-axis.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableCellTextDirection.BottomToTopLeftToRight">
            <summary>
            Specifies that text flows from bottom to top vertically,
            then from left to right horizontally on the page. Under this setting, vertical lines
            are filled before the text expands horizontally.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableCellTextDirection.LeftToRightTopToBottom">
            <summary>
            Specifies that text flows from left to right horizontally,
            then top to bottom vertically on the page. Under this setting, horizontal lines
            are filled before the text expands vertically.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableCellTextDirection.LeftToRightTopToBottomRotated">
            <summary>
            Specifies that text flows from left to right horizontally,
            then top to bottom vertically on the page. Under this setting, horizontal lines
            are filled before the text expands vertically.
            This flow is also rotated such that any East Asian text shall be
            rotated 270 degrees when displayed on a page.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableCellTextDirection.TopToBottomLeftToRightRotated">
            <summary>
            Specifies that text flows from top to bottom vertically,
            then left to right horizontally on the page. Under this setting, vertical lines
            are filled before the text expands horizontally.
            This flow is also rotated such that all text is rotated 90
            degrees when displayed on a page.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableCellTextDirection.TopToBottomRightToLeft">
            <summary>
            Specifies that text flows from right to left horizontally,
            then top to bottom vertically on the page. Under this setting,
            vertical lines are filled before the text expands horizontally.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableCellTextDirection.TopToBottomRightToLeftRotated">
            <summary>
            Specifies that text flows from right to left horizontally,
            then top to bottom vertically on the page. Under this setting,
            vertical lines are filled before the text expands horizontal.
            This flow is also rotated such that all text is rotated 90
            degrees when displayed on a page.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.TableLayout">
            <summary>
            Constants which define the possible types of layout algorithms
            which are applied when determining the size and position of
            table cells.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableLayout.Auto">
            <summary>
            The preferred widths of the table items are used to generate
            the final sizing of the table, but the contents of each cell
            determines the final column widths.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableLayout.Fixed">
            <summary>
            The preferred widths of the table items are used to generate
            the final sizing of the table, but does not change that size,
            regardless of the contents of each cell.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.PageOrientation">
            <summary>
            Constants which define the orientation for a page in the document.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageOrientation.Default">
            <summary>
            The actual value is determined by the page size.
            If the width of the page size is greater than the height, the orientation
            resolves to 'Landscape'; if the width is equal or less than the height,
            it resolves to 'Portrait'.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageOrientation.Portrait">
            <summary>
            Pages in the associated section are printed in portrait mode, with no rotation.
            The page size is adjusted, if necessary, so that the height is greater than or
            equal to the width, by swapping the values as defined by the page size.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageOrientation.Landscape">
            <summary>
            Pages in the associated section are printed at a 90 degree rotation
            with respect to the normal page orientation.
            The page size is adjusted, if necessary, so that the width is greater than or
            equal to the height, by swapping the values as defined by the page size.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.TableBorderSides">
            <summary>
            Constants which define which border sides are drawn for cells and tables.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableBorderSides.None">
            <summary>
            No borders are drawn for the cell or table. This setting is equivalent
            to setting the style of all borders to 'None'.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableBorderSides.Top">
            <summary>
            The top border is drawn for the cell or table.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableBorderSides.Left">
            <summary>
            The left border is drawn for the cell or table.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableBorderSides.Bottom">
            <summary>
            The bottom border is drawn for the cell or table.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableBorderSides.Right">
            <summary>
            The right border is drawn for the cell or table.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableBorderSides.InsideH">
            <summary>
            The inner horizontal borders.
            </summary>        
        </member>
        <member name="F:Infragistics.Documents.Word.TableBorderSides.InsideV">
            <summary>
            The inner vertical borders.
            </summary>        
        </member>
        <member name="F:Infragistics.Documents.Word.TableBorderSides.LeftAndRight">
            <summary>
            Combines the 'Left' and 'Right' settings.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableBorderSides.TopAndBottom">
            <summary>
            Combines the 'Top' and 'Bottom' settings.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableBorderSides.AllInner">
            <summary>
            Combines the 'InsideH' and 'InsideV' settings.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableBorderSides.AllOuter">
            <summary>
            Combines the 'Top', 'Left', 'Bottom', and 'Right' settings.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.TableBorderSides.All">
            <summary>
            All borders are drawn. This is the default setting.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.WordDocumentWriterState">
            <summary>
            Bitflags which describe the current state of a
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterState.None">
            <summary>
            No noteworthy state.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterState.DocumentOpen">
            <summary>
            The writer is currently between calls to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartDocument">StartDocument</see>
            and
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndDocument(System.Boolean)">EndDocument</see>
            methods.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterState.ParagraphOpen">
            <summary>
            The writer is currently between calls to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            and
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndParagraph">EndParagraph</see>
            methods.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterState.TableOpen">
            <summary>
            The writer is currently between calls to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartTable(System.Int32)">StartTable</see>
            and
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndTable">EndTable</see>
            methods.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterState.TableRowOpen">
            <summary>
            The writer is currently between calls to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartTableRow">StartTableRow</see>
            and
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndTableRow">EndTableRow</see>
            methods.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentWriterState.TableCellOpen">
            <summary>
            The writer is currently between calls to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartTableCell(Infragistics.Documents.Word.TableCellProperties)">StartTableCell</see>
            and
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndTableCell">EndTableCell</see>
            methods.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.SectionHeaderFooterParts">
            <summary>
            Constants which describe the header and footer parts that
            will be created in a document section when used by the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddSectionHeaderFooter(Infragistics.Documents.Word.SectionHeaderFooterParts)">AddSectionHeaderFooter</see>
            method.
            </summary>
            <remarks>
            <p class="body">
            This enumeration is decorated with the System.Flags attribute, which means that
            the constants defined herein can be combined using the logical OR operator.
            For example, to specify that a document section should contain both a header
            and a footer, on all pages, the values 'HeaderAllPages' (0x0001) and
            'FooterAllPages' (0x0002) would be combined in a bitwise manner to produce
            a numerical value of 0x0003, resulting in both a header and a footer on
            all pages in the section.
            </p>
            </remarks>
        </member>
        <member name="F:Infragistics.Documents.Word.SectionHeaderFooterParts.None">
            <summary>
            No headers or footers should appear in the section.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.SectionHeaderFooterParts.HeaderAllPages">
            <summary>
            A header which appears on all pages of the section.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.SectionHeaderFooterParts.FooterAllPages">
            <summary>
            A footer which appears on all pages of the section.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.SectionHeaderFooterParts.HeaderFirstPageOnly">
            <summary>
            A header which appears only on the first page of the section.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.SectionHeaderFooterParts.FooterFirstPageOnly">
            <summary>
            A footer which appears only on the first page of the section.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.SectionHeaderFooterParts.All">
            <summary>
            Combines the HeaderAllPages, FooterAllPages, HeaderFirstPageOnly, and FooterFirstPageOnly
            settings.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.HeaderFooterType">
            <summary>
            Specifies the possible types of headers and footers which
            may be specified for a given header or footer reference in
            a document section.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.HeaderFooterType.AllPages">
            <summary>
            Specifies that this header/footer is to appear on
            every page in this section which is not overridden with
            a specific first page header/footer.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.HeaderFooterType.FirstPageOnly">
            <summary>
            Specifies that this header/footer is to appear on only
            the first page of the section.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.PageNumberFieldFormat">
            <summary>
            Constants which define the format applied to the page numbers
            displayed for a header or footer.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.Decimal">
            <summary>
            Pages are numbered using standard decimal representation.
            Example: "1", "2", "3"
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.DecimalDash">
            <summary>
            Pages are numbered using standard decimal representation, with the
            numbers prefixed and sufixed by dashes.
            Example: "-1-", "-2-", "-3-"
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.DecimalCircle">
            <summary>
            Pages are numbered using standard decimal representation, with the
            numbers enclosed in a circle.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.DecimalParenthesis">
            <summary>
            Pages are numbered using standard decimal representation, with the
            numbers enclosed in parenthesis.
            Example: "(1)", "(2)", "(3)"
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.LatinAlphabeticUppercase">
            <summary>
            Formats a numeric result as one or more occurrences of an
            uppercase alphabetic Latin character.
            Example: "A", "B", "C"
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.LatinAlphabeticLowercase">
            <summary>
            Formats a numeric result as one or more occurrences of an
            lowercase alphabetic Latin character.
            </summary>
            Example: "a", "b", "c"
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.ArabicAbjad">
            <summary>
            Pages are numbered using ascending Abjad numerals.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.ArabicAlphabetic">
            <summary>
            Pages are numbered using characters in the Arabic alphabet.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.Chinese">
            <summary>
            Pages are numbered using ascending numbers from the Chinese counting system.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.ChineseLegalSimplified">
            <summary>
            Pages are numbered using sequential numbers from the Chinese simplified legal format.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.ChineseCountingThousand">
            <summary>
            Pages are numbered using sequential numbers from the Chinese counting thousand system.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.Hebrew">
            <summary>
            Pages are numbered using Hebrew numerals.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.HebrewAlphabetic">
            <summary>
            Pages are numbered using the Hebrew alphabet.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.JapaneseKanji">
            <summary>
            Pages are numbered using a Japanese style using sequential digital
            ideographs, using the appropriate character.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.JapaneseCounting">
            <summary>
            Pages are numbered using the Japanese counting system.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.JapaneseIroha">
            <summary>
            Pages are numbered using the Japanese iroha.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.JapaneseLegal">
            <summary>
            Pages are numbered using sequential numbers from the Japanese legal counting system.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.JapaneseDigitalTenThousand">
            <summary>
            Pages are numbered using sequential numbers from the Japanese digital ten thousand counting system.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.KoreanCounting">
            <summary>
            Pages are numbered using sequential numbers from the Korean counting system.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.KoreanChosung">
            <summary>
            Pages are numbered using sequential numbers from the Korean Chosung format.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.KoreanGanada">
            <summary>
            Pages are numbered using sequential numbers from the Korean Ganada format.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.RomanLowercase">
            <summary>
            Pages are numbered using lowercase Roman numerals.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.RomanUppercase">
            <summary>
            Pages are numbered using uppercase Roman numerals.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.Thai">
            <summary>
            Pages are numbered using Thai numbers.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.ThaiCounting">
            <summary>
            Pages are numbered using sequential numbers from the Thai counting system.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.ThaiLetter">
            <summary>
            Pages are numbered using Thai letters.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.Ordinal">
            <summary>
            Pages are numbered using lowercase ordinal representation of arabic numerals.
            Example: "1st", "2nd", "3rd"
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.TextOrdinal">
            <summary>
            Pages are numbered using lowercase ordinal text.
            Example: "first", "second", "third"
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.PageNumberFieldFormat.TextCardinal">
            <summary>
            Pages are numbered using lowercase cardinal text.
            Example: "one", "two", "three"
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.ShapeType">
            <summary>
            Constants which define the types of shapes that can appear within a document.
            </summary>
            <remarks>
            <p class="body">
            The
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            currently only supports shape rendering using Vector Markup Language (VML); the reason
            this rendering mode is used is that it is supported in both MS Word 2007 and MS Word 2010.
            </p>
            <p class="body">
            The following table lists the classnames of the VML shapes associated with
            each constant:
            </p>
            <p class="body">
            <table border="1" cellpadding="3" width="100%" class="FilteredItemListTable">
            <thead>
            <tr>
            <th>ShapeType</th>
            <th>VML Shape</th>
            </tr>
            </thead>
            <tbody>
            <tr><td class="body">Line</td><td class="body"><see cref="T:Infragistics.Documents.Word.VmlLine">VmlLine</see></td></tr>
            <tr><td class="body">Rectangle</td><td class="body"><see cref="T:Infragistics.Documents.Word.VmlRectangle">VmlRectangle</see></td></tr>
            <tr><td class="body">Ellipse</td><td class="body"><see cref="T:Infragistics.Documents.Word.VmlEllipse">VmlEllipse</see></td></tr>
            <tr><td class="body">IsosceleseTriangle</td><td class="body"><see cref="T:Infragistics.Documents.Word.VmlIsosceleseTriangle">VmlIsosceleseTriangle</see></td></tr>
            <tr><td class="body">RightTriangle</td><td class="body"><see cref="T:Infragistics.Documents.Word.VmlRightTriangle">VmlRightTriangle</see></td></tr>
            </tbody>
            </table>
            </p>
            </remarks>
        </member>
        <member name="F:Infragistics.Documents.Word.ShapeType.Line">
            <summary>
            A straight
            <see cref="T:Infragistics.Documents.Word.VmlLine">line</see>.
            The origin of the line is implied to be
            at the top left corner of the rectangle defined by its
            position within the document and its
            <see cref="P:Infragistics.Documents.Word.Shape.Size">size</see>,
            and its endpoint is implied to be the bottom right corner of that rectangle.
            For lines that run parallel to the x or y
            axis, the width or height component of the Size property
            is set to zero (pure horizontal lines have a height of zero,
            pure vertical lines have a width of zero).
            A line can be inverted about the x axis using the
            <see cref="P:Infragistics.Documents.Word.VmlLine.InvertY">InvertY</see>
            property. This is used to render a line with a positive slope; since the origin
            is implied to be the top left corner of the bounding rect, the origin must be
            transformed to the bottom left corner.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ShapeType.Rectangle">
            <summary>
            A
            <see cref="T:Infragistics.Documents.Word.VmlRectangle">rectangle</see>.
            The bounds of the rectangle are defined by its
            position within the document and its
            <see cref="P:Infragistics.Documents.Word.Shape.Size">size</see>.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ShapeType.Ellipse">
            <summary>
            An
            <see cref="T:Infragistics.Documents.Word.VmlEllipse">ellipse</see>.
            The bounds of the enclosing rectangle are defined by its
            position within the document and its
            <see cref="P:Infragistics.Documents.Word.Shape.Size">size</see>.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ShapeType.IsosceleseTriangle">
            <summary>
            A
            <see cref="T:Infragistics.Documents.Word.VmlIsosceleseTriangle">triangle</see>
            whose apex is at the center of the rectangle which encloses it.
            The bounds of the enclosing rectangle are defined by its
            position within the document and its
            <see cref="P:Infragistics.Documents.Word.Shape.Size">size</see>.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ShapeType.RightTriangle">
            <summary>
            A
            <see cref="T:Infragistics.Documents.Word.VmlRightTriangle">triangle</see>
            whose apex is at the left edge of the rectangle which encloses it.
            The bounds of the enclosing rectangle are defined by its
            position within the document and its
            <see cref="P:Infragistics.Documents.Word.Shape.Size">size</see>.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.NewLineType">
            <summary>
            Constants which specify the way a newline within a
            paragraph is represented in the generated output.
            </summary>
            <remarks>
            <p class="body">
            A document consumer may interpret the behavior of line breaking
            characters differently depending on the characters used to represent
            them. For example, MS Word interprets a carriage return differently
            depending on whether the content is enclosed within a table cell.
            Paragraph justification also behaves differently depending on whether
            a line break or carriage return is used.
            </p>
            </remarks>
        </member>
        <member name="F:Infragistics.Documents.Word.NewLineType.LineBreak">
            <summary>
            The newline is represented as a line break.
            For the WordprocessingML format, the '&lt;br&gt;' tag is used to represent the newline in the generated XML.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.NewLineType.CarriageReturn">
            <summary>
            The newline is represented as a carriage return.
            For the WordprocessingML format, the '&lt;cr&gt;' tag is used to represent the newline in the generated XML.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.ShapeLineStyle">
            <summary>
            Constants which determine the style applied to the line for a shape.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ShapeLineStyle.Solid">
            <summary>
            A solid, unbroken line.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ShapeLineStyle.ShortDash">
            <summary>
            A line with short dashes.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ShapeLineStyle.ShortDot">
            <summary>
            A line with short dots.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ShapeLineStyle.ShortDashDot">
            <summary>
            A line with a short dash and a dot.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ShapeLineStyle.ShortDashDotDot">
            <summary>
            A line with a short dash followed by two dots.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ShapeLineStyle.Dot">
            <summary>
            A dotted line.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ShapeLineStyle.Dash">
            <summary>
            A dashed line.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ShapeLineStyle.LongDash">
            <summary>
            A line with long dashes.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ShapeLineStyle.DashDot">
            <summary>
            A line with alternating dashes and dots.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ShapeLineStyle.LongDashDot">
            <summary>
            A line with alternating long dashes and dots.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.ShapeLineStyle.LongDashDotDot">
            <summary>
            A line with a long dash followed by two dots.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.TableCellPropertiesBase">
            <summary>
            Encapsulates the basic properties of a table cell, which are applicable
            at different levels of the property resolution hierarchy.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.TableCellPropertiesBase.Reset">
            <summary>
            Restores all property values for this instance to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TableCellPropertiesBase.BackColor">
            <summary>
            Returns or sets the background color for this cell.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TableCellPropertiesBase.Margins">
            <summary>
            Returns or sets a value which determines the amount of padding
            applied between the inside of this cell's borders and its content.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TableCellPropertiesBase.VerticalAlignment">
            <summary>
            Returns or sets a value indicating the vertical alignment
            of the cell's contents.
            </summary>
            <remarks>
            <p class="body">
            Horizontal alignment of a cell's contents is defined at the paragraph level.
            </p>
            </remarks>
            <see cref="P:Infragistics.Documents.Word.ParagraphPropertiesBase.Alignment">Alignment</see>
        </member>
        <member name="T:Infragistics.Documents.Word.TableCellProperties">
            <summary>
            Encapsulates the properties of a table cell.
            </summary>
            <remarks>
            <p class="body">
            This class is used to override the table-level cell properties 
            for a cell or group of cells. One instance can be used to define
            the properties of multiple cells.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.TableCellProperties.Create(Infragistics.Documents.Word.WordDocumentWriter)">
            <summary>
            Returns a new instance which is associated with the specified
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </summary>
            <param name="writer">
            The associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            instance.
            </param>
            <returns>
            A new
            <see cref="T:Infragistics.Documents.Word.TableCellProperties">TableCellProperties</see>
            instance.
            </returns>
        </member>
        <member name="M:Infragistics.Documents.Word.TableCellProperties.Reset">
            <summary>
            Restores all property values for this instance to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TableCellProperties.BorderProperties">
            <summary>
            Returns or sets an object which provides a way to customize
            the borders for the associated cell.
            </summary>
            <remarks>
            <p class="body">
            Cell border properties are inherited from the table
            to which the cell belongs. This property provides a way to
            interrupt inheritance of table borders for a cell or group of cells.
            </p>
            <p class="body">
            The instance returned from this property's get method will be
            created when it is first requested, i.e., "lazily". A previously
            created instance can be assigned (for example, from a previously
            created TableCellProperties instance), provided that they are
            associated with the same
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            This approach can reduce the heap fragmentation that can result from excessive
            object instantiation in the case where the border properties must be explicitly
            set for a relatively large number of cells.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.TableCellProperties.HasBorderProperties">
            <summary>
            Returns a boolean value indicating whether an object has been created for or assigned to the
            <see cref="P:Infragistics.Documents.Word.TableCellProperties.BorderProperties">BorderProperties</see>
            property.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TableCellProperties.ColumnSpan">
            <summary>
            Returns or sets an integral value which determines the number
            of columns across which this cell spans.
            </summary>
            <remarks>
            <p class="body">
            By default, a cell spans across only one column, typically having
            the same PreferredWidth as that column. The ColumnSpan property makes it possible
            to support horizontal cell merging, whereby one cell can appear to span
            across two or more columns. For example, consider a grid with 3 columns,
            A, B, and C. If the developer wants the cell in position A to extend to
            the left edge of cell C, effectively skipping cell B, the ColumnSpan
            property of cell A would be set to 2.
            </p>
            <p class="body">
            In addition to setting the ColumnSpan property, the
            <see cref="P:Infragistics.Documents.Word.TableCellProperties.PreferredWidth">PreferredWidth</see>
            property must also be set to an appropriate value in order
            to make a cell span across multiple columns. Using the example
            above, the PreferredWidth of cell A must be set to (A.PreferredWidth + B.PreferredWidth)
            in order to make it span to the left edge of cell C.
            </p>
            <p class="body">
            The default value of zero logically represents a span of one column.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.TableCellProperties.TextDirection">
            <summary>
            Returns or sets a value indicating the direction of
            text flow for text within the associated table cell.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TableCellProperties.VerticalMerge">
            <summary>
            Returns or sets a value indicating whether this cell should
            begin or continue a vertical merging run with adjacent cells.
            </summary>
            <remarks>
            <p class="body">
            Similarly to how the
            <see cref="P:Infragistics.Documents.Word.TableCellProperties.ColumnSpan">ColumnSpan</see>
            property supports horizontal cell merging, the VerticalMerge
            property can be used to start a vertical merging run, or
            continue an existing one.
            </p>
            <p class="body">
            When set to 'Start', a vertical merging run begins with this cell.
            Subsequent cells whose VerticalMerge property is set to 'Continue'
            will appear to merge with the cell directly above in the same column.
            When set to 'None', any existing vertical merging run is interrupted.
            The 'Start' setting also discontinues any existing vertical merging run.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.TableCellProperties.PreferredWidth">
            <summary>
            Returns or sets the preferred width of the associated table cell,
            expressed as an explicit linear quantity.
            </summary>
            <remarks>
            <p class="body">
            This property is only applicable when the
            <see cref="P:Infragistics.Documents.Word.TableProperties.Layout">Layout</see>
            property is set to 'Auto'.
            </p>
            <p class="body">
            The PreferredWidth property provides a way to explicitly define the width
            of the associated table cell. The value is considered preferred because
            the actual width may be different based on the current table layout algorithm.
            </p>
            <p class="body">
            The unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property of the associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </p>
            <p class="body">
            The PreferredWidth property and the
            <see cref="P:Infragistics.Documents.Word.TableCellProperties.PreferredWidthAsPercentage">PreferredWidthAsPercentage</see>
            properties are mutually exclusive, and the PreferredWidth property takes precedence,
            so in the case where both properties are explicitly set, the PreferredWidthAsPercentage
            property is not applicable.
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.TableProperties.PreferredWidth">PreferredWidth</seealso>
            <seealso cref="P:Infragistics.Documents.Word.TableProperties.Layout">Layout</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.TableCellProperties.PreferredWidthAsPercentage">
            <summary>
            Returns or sets the preferred width of the associated table cell,
            expressed as a percentage of the width of the containing table.
            </summary>
            <remarks>
            <p class="body">
            This property is only applicable when the
            <see cref="P:Infragistics.Documents.Word.TableProperties.Layout">Layout</see>
            property is set to 'Fixed'.
            </p>
            <p class="body">
            This value is considered preferred because a consumer may elect to
            override this value based on the current table layout algorithm.
            </p>
            <p class="body">
            The valid range for this property's value is a number between .02 and 100.
            Note that the unit of measure is <b>not</b> defined by the associated
            document writer's unit of measure.
            </p>
            <p class="body">
            The PreferredWidthAsPercentage property and the
            <see cref="P:Infragistics.Documents.Word.TableCellProperties.PreferredWidth">PreferredWidth</see>
            properties are mutually exclusive, and the PreferredWidth property takes precedence,
            so in the case where both properties are explicitly set, the PreferredWidth property
            takes precedence, and this property is not applicable.
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.TableCellProperties.PreferredWidth">PreferredWidth</seealso>
            <seealso cref="P:Infragistics.Documents.Word.TableProperties.PreferredWidth">PreferredWidth (TableProperties class)</seealso>
            <seealso cref="P:Infragistics.Documents.Word.TableProperties.Layout">Layout</seealso>
        </member>
        <member name="T:Infragistics.Documents.Word.TablePropertiesBase">
            <summary>
            Encapsulates the properties of a table which can be applied
            globally to all tables in a document.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.TablePropertiesBase.Reset">
            <summary>
            Restores all property values for this instance to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TablePropertiesBase.BorderProperties">
            <summary>
            Returns an object which provides a way to customize borders
            for the cells in the associated table.
            </summary>
            <remarks>
            <p class="body">
            The properties of the instance returned from this property are
            also inherited by the cells which appear within the associated table.
            For example, if the border style is set to 'Dotted' on this instance,
            the cells within the associated table will acquire that setting, unless
            the cell has its own overriding border definition.
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.TableCellProperties.BorderProperties">BorderProperties (TableCellProperties class)</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.TablePropertiesBase.CellSpacing">
            <summary>
            Returns or sets a value which determines the amount of spacing
            applied between adjacent cells and the table borders.
            </summary>
            <remarks>
            <p class="body">
            The unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property of the associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </p>
            </remarks>
        </member>
        <member name="T:Infragistics.Documents.Word.DefaultTableProperties">
            <summary>
            Encapsulates the properties of a table which can be applied
            globally to all tables in a document.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.DefaultTableProperties.Reset">
            <summary>
            Restores all property values for this instance to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.DefaultTableProperties.CellProperties">
            <summary>
            Returns a
            <see cref="T:Infragistics.Documents.Word.TableCellPropertiesBase">TableCellPropertiesBase</see>
            instance which defines the default properties for table cells.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.TableProperties">
            <summary>
            <summary>
            Encapsulates the properties of a table which can be applied
            to a specific table.
            </summary>
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.TableProperties.Create(Infragistics.Documents.Word.WordDocumentWriter)">
            <summary>
            Returns a new instance which is associated with the specified
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </summary>
            <param name="writer">
            The associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            instance.
            </param>
            <returns>
            A new
            <see cref="T:Infragistics.Documents.Word.TableProperties">TableProperties</see>
            instance.
            </returns>
        </member>
        <member name="M:Infragistics.Documents.Word.TableProperties.Reset">
            <summary>
            Restores all property values for this instance to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TableProperties.CellMargins">
            <summary>
            Returns or sets a value which determines the amount of padding
            applied between the inside of the cell borders and the cell content.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TableProperties.Layout">
            <summary>
            Returns or sets a value which determines the layout
            algorithm that is used to determine the size and position
            of cells in the associated table.
            </summary>
            <remarks>
            <p class="body">
            By default, the table layout is automatic, which means that
            cells are automatically sized to fully display their contents.
            The Layout property can be used to apply explicit column widths.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.TableProperties.PreferredWidth">
            <summary>
            Returns or sets the preferred width of the associated table, expressed
            as an explicit linear quantity.
            </summary>
            <remarks>
            <p class="body">
            This property is only applicable when the
            <see cref="P:Infragistics.Documents.Word.TableProperties.Layout">Layout</see>
            property is set to 'Fixed'.
            </p>
            <p class="body">
            The value of this property is considered preferred because a consumer
            may elect to override this value based on the current table layout algorithm.
            </p>
            <p class="body">
            The unit of measurement used to express the property value is defined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property of the associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </p>
            <p class="body">
            The PreferredWidth property and the
            <see cref="P:Infragistics.Documents.Word.TableProperties.PreferredWidthAsPercentage">PreferredWidthAsPercentage</see>
            properties are mutually exclusive, and the PreferredWidth property takes precedence,
            so in the case where both properties are explicitly set, the PreferredWidthAsPercentage
            property is not applicable.
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.TableProperties.PreferredWidthAsPercentage">PreferredWidthAsPercentage</seealso>
            <seealso cref="P:Infragistics.Documents.Word.TableCellProperties.PreferredWidthAsPercentage">PreferredWidthAsPercentage (TableCellProperties class)</seealso>
            <seealso cref="P:Infragistics.Documents.Word.TableProperties.Layout">Layout</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.TableProperties.PreferredWidthAsPercentage">
            <summary>
            Returns or sets the preferred width of the associated table,
            expressed as a percentage of the width of the containing element.
            </summary>
            <remarks>
            <p class="body">
            This property is only applicable when the
            <see cref="P:Infragistics.Documents.Word.TableProperties.Layout">Layout</see>
            property is set to 'Fixed'.
            </p>
            <p class="body">
            This value is considered preferred because a consumer may elect to
            override this value based on the current table layout algorithm.
            </p>
            <p class="body">
            The valid range for this property's value is a number between .02 and 100.
            Note that the unit of measure is <b>not</b> defined by the associated
            document writer's unit of measure.
            </p>
            <p class="body">
            The PreferredWidthAsPercentage property and the
            <see cref="P:Infragistics.Documents.Word.TableProperties.PreferredWidth">PreferredWidth</see>
            properties are mutually exclusive, and the PreferredWidth property takes precedence,
            so in the case where both properties are explicitly set, the PreferredWidth property
            takes precedence, and this property is not applicable.
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.TableProperties.PreferredWidth">PreferredWidth</seealso>
            <seealso cref="P:Infragistics.Documents.Word.TableProperties.Layout">Layout</seealso>
        </member>
        <member name="T:Infragistics.Documents.Word.TableBorderProperties">
            <summary>
            Encapsulates the properties of the borders applied to tables and cells.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.TableBorderProperties.SetWidthInPixels(System.Int32,System.Single)">
            <summary>
            Assigns a value to the
            <see cref="P:Infragistics.Documents.Word.TableBorderProperties.Width">Width</see>
            property that is equals to the specified number of pixels at the
            specified resolution.
            </summary>
            <param name="value">The border's width, expressed as an integral number of pixels.</param>
            <param name="dpi">The pixel resolution, expressed as the number of pixels required to span one inch.</param>
            <remarks>
            <p class="body">
            Values less than zero are not permitted for either parameter; an exception is thrown when a negative value is assigned.
            Values that would exceed the minimum or maximum allowable value are rounded to the min/max as required.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.TableBorderProperties.Create(Infragistics.Documents.Word.WordDocumentWriter)">
            <summary>
            Returns a new instance which is associated with the specified
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </summary>
            <param name="writer">
            The associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            instance.
            </param>
            <returns>
            A new
            <see cref="T:Infragistics.Documents.Word.TableBorderProperties">TableBorderProperties</see>
            instance.
            </returns>
        </member>
        <member name="M:Infragistics.Documents.Word.TableBorderProperties.Reset">
            <summary>
            Restores all property values for this instance to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TableBorderProperties.Sides">
            <summary>
            Returns or sets a value which defines whether the top, left,
            right, and bottom borders are drawn for a table or cell.
            </summary>
            <remarks>
            <p class="body">
            All borders are drawn for all cells in a table by default;
            however, in cases where the border style does not preclude
            it, the borders of adjacent cells are merged, so as not
            to cause the borders to appear "thicker" than the user would
            expect. Because of these border merging algorithms, setting
            this property may not yield the expected result.
            </p>
            <p class="body">
            Note that the value of this property takes precedence over the
            <see cref="P:Infragistics.Documents.Word.TableCellProperties.VerticalMerge">VerticalMerge</see>
            and
            <see cref="P:Infragistics.Documents.Word.TableCellProperties.ColumnSpan">ColumnSpan</see>
            properties with regard to border drawing.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.TableBorderProperties.Style">
            <summary>
            Returns or sets a value which determines the style of the borders.
            </summary>
            <remarks>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.TableBorderProperties.Color">
            <summary>
            Returns or sets a value which determines the color of the borders.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TableBorderProperties.Width">
            <summary>
            Returns or sets a value which determines the width of the borders.
            </summary>
            <remarks>
            <p class="body">
            WordprocessingML persists border widths in units equal to one-eighth
            of a desktop publishing point; this equates to 1/576 of an inch. The range
            of valid values spans from one-fourth of a point to 12 points.
            </p>
            <p class="body">
            A value which is based on a specific number of pixels can be assigned using the
            <see cref="M:Infragistics.Documents.Word.TableBorderProperties.SetWidthInPixels(System.Int32,System.Single)">SetWidthInPixels</see>
            method.
            </p>
            <p class="body">
            WordprocessingML supports border thicknesses up to one-sixth of an inch. Values
            which exceed this amount are not recognized, and the resulting border thickness
            resolves to this value.
            </p>
            </remarks>
        </member>
        <member name="T:Infragistics.Documents.Word.TableRowProperties">
            <summary>
            Encapsulates the properties of a table row.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.TableRowProperties.Create(Infragistics.Documents.Word.WordDocumentWriter)">
            <summary>
            Returns a new instance which is associated with the specified
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </summary>
            <param name="writer">
            The associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            instance.
            </param>
            <returns>
            A new
            <see cref="T:Infragistics.Documents.Word.TableRowProperties">TableRowProperties</see>
            instance.
            </returns>
        </member>
        <member name="M:Infragistics.Documents.Word.TableRowProperties.Reset">
            <summary>
            Restores all property values for this instance to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TableRowProperties.CellsBefore">
            <summary>
            Returns or sets a value which determines the number of
            logical grid units that are skipped before the first
            cell in this row is displayed.
            </summary>
            <remarks>
            <p class="body">
            By default, the first cell of the row is displayed in the first
            logical grid position. This property can be used to "offset" the
            beginning of the row; this can be useful in situations where the
            row should appear indented with respect to other rows in the same
            table.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.TableRowProperties.CellsAfter">
            <summary>
            Returns or sets a value which determines the number of
            logical grid units that are left after the last cell in
            this row is displayed.
            </summary>
            <remarks>
            <p class="body">
            By default, the last cell of the row is displayed in the last
            logical grid position. This property can be used to omit one
            or more cells from the end of the row.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.TableRowProperties.CellSpacing">
            <summary>
            Returns or sets a value which determines the amount of spacing
            applied between adjacent cells and the table borders.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TableRowProperties.Height">
            <summary>
            Returns or sets the height of the associated row.
            </summary>
            <remarks>
            <p class="body">
            The unit of measure is determined by the value of the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property.
            </p>
            <p class="body">
            When a value is explicitly assigned to the Height property, but not to the
            <see cref="P:Infragistics.Documents.Word.TableRowProperties.HeightRule">HeightRule</see>
            property, the HeightRule resolves to 'Exact'.
            </p>
            <p class="body">
            When the HeightRule property is set to 'Auto', the value of the Height
            property is not applicable.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.TableRowProperties.HeightRule">
            <summary>
            Returns or sets the rule applied when calculating the
            <see cref="P:Infragistics.Documents.Word.TableRowProperties.Height">Height</see>
            of the associated row.
            </summary>
            <remarks>
            <p class="body">
            By default, the row height rule is 'Auto', unless a value is explicitly
            assigned to the Height property, in which case it defaults to 'Exact'.
            Explicitly assigning a value to the HeightRule property overrides this
            behavior.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.TableRowProperties.IsHeaderRow">
            <summary>
            Returns or sets a boolean value indicating whether the associated
            row is repeated at the top of each page on which it appears.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TableRowProperties.AllowPageBreak">
            <summary>
            Returns or sets a boolean value indicating whether the associated
            row can span across multiple pages.
            </summary>
            <remarks>
            <p class="body">
            In the case where this property is not explicitly set, rows are
            allowed to span multiple pages. This property can be explicitly
            set to false to ensure that the associated row is not displayed
            on more than one page.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordCustomizablePartExporterBase.GetElementName(System.Enum,System.String@,System.String@,System.String@)">
            <summary>
            Returns the fully qualified name of the XMl element
            corresponding to the specified <paramref name="element"/>.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordPartExporterXmlExceptionEventArgs.InnerException">
            <summary>
            Returns a reference to the exception that was thrown by the XmlWriter.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordPartExporterXmlExceptionEventArgs.Element">
            <summary>
            Returns the name of the XML element that caused the exception
            or null if there is no associated XML element.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordPartExporterXmlExceptionEventArgs.Attribute">
            <summary>
            Returns the name of the XML attribute that caused the exception
            or null if there is no associated XML attribute.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.WordDocumentExportManager">
            <summary>
            Class used to export data in a format recognized by a consumer
            of wordProcessingML-compliant markup.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentExportManager.StartDocument">
            <summary>
            Begins the serialization process for a wordProcessingML-compliant document
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentExportManager.EndDocument">
            <summary>
            Begins the serialization process for a wordProcessingML-compliant document
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentExportManager.AddPendingParts(Infragistics.Documents.Word.WordDocumentExportManager.PendingPartType)">
            <summary>
            Since during the course of writing to the \word\document.xml
            it might become necessary to add a part (styles for example)
            in which case we need to do that now.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentPartExporter.SpaceChar">
            <summary>Returns char #32</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentPartExporter.ContentTypeValue">
            <summary>'application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml'</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentPartExporter.DefaultPartName">
            <summary>'/word/document.xml'</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentPartExporter.RelationshipTypeValue">
            <summary>'http://schemas.openxmlformats.org/officeDocument/2006/relationships/officeDocument'</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentPartExporter.XmlNamespace">
            <summary>
            'http://www.w3.org/XML/1998/namespace'
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentPartExporter.DefaultXmlNamespacePrefix">
            <summary>
            'w'
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentPartExporter.DefaultXmlNamespace">
            <summary>
            'http://schemas.openxmlformats.org/wordprocessingml/2006/main'
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentPartExporter.RelationshipsNamespace">
            <summary>'http://schemas.openxmlformats.org/officeDocument/2006/relationships'</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentPartExporter.RelationshipsNamespacePrefix">
            <summary>'r'</summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentPartExporter.GetElementName(System.Enum,System.String@,System.String@,System.String@)">
            <summary>
            Returns the fully qualified name of the XMl element
            corresponding to the specified <paramref name="element"/>.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentPartExporter.GetElementNameHelper(System.Enum,System.String@,System.String@,System.String@)">
            <summary>
            Returns the fully qualified name of the XMl element
            corresponding to the specified <paramref name="element"/>.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentPartExporter.ContentStream">
            <summary>
            Returns the stream to which the document content is written.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentPartExporter.WriteState">
            <summary>
            Returns the write state of the XMLWriter.
            Returns WriteState.Start if the XMLWriter has not yet been created.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordHeaderFooterPartExporterBase.PartNameTemplate">
            <summary>'/word/[header/footer]{0}.xml'</summary>
        </member>
        <member name="T:Infragistics.Documents.Word.WordDocumentProperties">
            <summary>
            Encapsulates the properties of an OfficeML-compliant document
            such as author, subject, title, etc.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentProperties.DefaultLatinCulture">
            <summary>
            Returns the default value of the LatinCulture property ('en-US').
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentProperties.DefaultEastAsiaCulture">
            <summary>
            Returns the default value of the EastAsiaCulture property ('ja-JP').
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentProperties.DefaultComplexScriptCulture">
            <summary>
            Returns the default value of the ComplexScriptCulture property ('ar-SA').
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentProperties.DefaultTemplate">
            <summary>
            Returns the default value of the Template property ('Normal.dotm').
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordDocumentProperties.DefaultApplication">
            <summary>
            Returns the default value of the Application property ('Microsoft Office Word').
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentProperties.Reset">
            <summary>
            Restores all properties of this class to their
            respective default values.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentProperties.Application">
            <summary>
            Returns or sets the name of the consuming application.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentProperties.LatinCulture">
            <summary>
            Specifies the language which shall be used to check spelling
            and grammar (if requested) when processing the contents of text
            runs which contain Latin characters, as determined by the Unicode
            character values of the run content.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentProperties.EastAsiaCulture">
            <summary>
            Specifies the language which is used when processing
            the contents of text runs which contain East Asian
            characters, as determined by the Unicode character
            values of the run content.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentProperties.ComplexScriptCulture">
            <summary>
            Specifies the language which is used when processing
            the contents of text runs which contain complex script
            characters, as determined by the Unicode character
            values of the run content.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentProperties.Template">
            <summary>
            Returns the document template to be used by the consuming application.
            This property currently only supports a value of 'Normal.dotm'
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.WordDocumentWriter">
            <summary>
            Abstract class which provides a fast, non-cached, forward-only way
            of generating streams or files containing word processing data.
            </summary>
            <seealso cref="T:Infragistics.Documents.Word.WordprocessingMLWriter">WordprocessingMLWriter class</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.Create(System.String)">
            <summary>
            Creates and returns a new instance of a WordDocumentWriter-derived class.
            </summary>
            <param name="filename">The fully qualified path to the Office document file to be created.</param>
            <returns>A reference to the WordDocumentWriter-derived instance that was created.</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.Create(System.IO.Stream)">
            <summary>
            Creates and returns a new instance of a WordDocumentWriter-derived class.
            </summary>
            <param name="stream">The System.IO.Stream to which the content is persisted.</param>
            <returns>A reference to the WordDocumentWriter-derived instance that was created.</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.Create(System.IO.Stream,Infragistics.Documents.Core.Packaging.IPackageFactory)">
            <summary>
            Creates and returns a new instance of a WordDocumentWriter-derived class.
            </summary>
            <param name="stream">The System.IO.Stream to which the content is persisted.</param>
            <param name="packageFactory">
            An
            <see cref="T:Infragistics.Documents.Core.Packaging.IPackageFactory">IPackageFactory</see>
            implementor which handles the packaging of the output file stream.
            </param>
            <returns>A reference to the WordDocumentWriter-derived instance that was created.</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.CreateParagraphProperties">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.ParagraphProperties">ParagraphProperties</see>
            instance.
            </summary>
            <remarks>
            <p class="body">
            This method returns an instance which contains a reference to this class,
            which enables the instance to observe the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property setting, so that the developer can work in the unit of measure with which
            he is most comfortable.
            </p>
            <p class="body">
            The instance returned from this method can be passed to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph(Infragistics.Documents.Word.ParagraphProperties)">StartParagraph</see>
            method to specify the formatting attributes for the paragraph.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.CreateTableProperties">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.TableProperties">TableProperties</see>
            instance.
            </summary>
            <remarks>
            <p class="body">
            This method returns an instance which contains a reference to this class,
            which enables the instance to observe the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property setting, so that the developer can work in the unit of measure with which
            he is most comfortable.
            </p>
            <p class="body">
            The instance returned from this method can be passed to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartTable(System.Int32)">StartTable</see>
            method to specify the formatting attributes for the table.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.CreateTableRowProperties">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.TableRowProperties">TableRowProperties</see>
            instance.
            </summary>
            <remarks>
            <p class="body">
            This method returns an instance which contains a reference to this class,
            which enables the instance to observe the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property setting, so that the developer can work in the unit of measure with which
            he is most comfortable.
            </p>
            <p class="body">
            The instance returned from this method can be passed to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartTableRow(Infragistics.Documents.Word.TableRowProperties)">StartTableRow</see>
            method to specify the formatting attributes for the row.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.CreateTableCellProperties">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.TableCellProperties">TableCellProperties</see>
            instance.
            </summary>
            <remarks>
            <p class="body">
            This method returns an instance which contains a reference to this class,
            which enables the instance to observe the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property setting, so that the developer can work in the unit of measure with which
            he is most comfortable.
            </p>
            <p class="body">
            The instance returned from this method can be passed to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartTableCell(Infragistics.Documents.Word.TableCellProperties)">StartTableCell</see>
            method to specify the formatting attributes for the cell.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.CreateFont">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.Font">Font</see>
            instance which can be used to format text runs.
            </summary>
            <remarks>
            <p class="body">
            This method returns a font which contains a reference to this class,
            which enables the font to observe the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property setting, so that the developer can work in the unit of measure with which
            he is most comfortable.
            </p>
            <p class="body">
            The font returned from this method can be passed to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddTextRun(System.String,Infragistics.Documents.Word.Font)">AddTextRun</see>
            method to specify the font attributes for the run.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.CreateAnchoredPicture(System.Drawing.Image)">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.AnchoredPicture">AnchoredPicture</see>.
            </summary>
            <remarks>
            <p class="body">
            This method returns an instance which contains a reference to this class,
            which enables the instance to observe the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property setting, so that the developer can work in the unit of measure with which
            he is most comfortable.
            </p>
            <p class="body">
            The instance returned from this method can be passed to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddAnchoredPicture(System.Drawing.Image)">AddAnchoredPicture</see>
            method.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.CreateAnchoredShape(Infragistics.Documents.Word.ShapeType)">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.AnchoredShape">AnchoredShape</see>.
            </summary>
            <param name="shapeType">
            A
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which defines the shape.
            </param>
            <remarks>
            <p class="body">
            This method returns an instance which contains a reference to this class,
            which enables the instance to observe the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property setting, so that the developer can work in the unit of measure with which
            he is most comfortable.
            </p>
            <p class="body">
            The instance returned from this method can be passed to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddAnchoredShape(Infragistics.Documents.Word.ShapeType)">AddAnchoredShape</see>
            method.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.CreateAnchoredShape(Infragistics.Documents.Word.Shape)">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.AnchoredShape">AnchoredShape</see>.
            </summary>
            <param name="shape">
            A previously created
            <see cref="T:Infragistics.Documents.Word.Shape">Shape</see>
            instance on which the returned AnchoredShape instance is based.
            </param>
            <remarks>
            <p class="body">
            This method returns an instance which contains a reference to this class,
            which enables the instance to observe the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property setting, so that the developer can work in the unit of measure with which
            he is most comfortable.
            </p>
            <p class="body">
            The instance returned from this method can be passed to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddAnchoredShape(Infragistics.Documents.Word.AnchoredShape)">AddAnchoredShape</see>
            method.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.CreateVmlShape(Infragistics.Documents.Word.ShapeType)">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.VmlShape">VmlShape</see>-derived instance
            based on the specified <paramref name="shapeType"/>.
            </summary>
            <remarks>
            <p class="body">
            This method returns an instance which contains a reference to this class,
            which enables the instance to observe the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property setting, so that the developer can work in the unit of measure with which
            he is most comfortable.
            </p>
            <p class="body">
            The instance returned from this method can be passed to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddInlineShape(Infragistics.Documents.Word.InlineShape)">AddInlineShape</see>
            method.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.CreatePictureOutlineProperties">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.PictureOutlineProperties">PictureOutlineProperties</see>.
            </summary>
            <remarks>
            <p class="body">
            This method returns an instance which contains a reference to this class,
            which enables the instance to observe the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property setting, so that the developer can work in the unit of measure with which
            he is most comfortable.
            </p>
            <p class="body">
            The instance returned from this method can be passed to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddInlinePicture(System.Drawing.Image)">AddInlinePicture</see>
            method.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.CreateSectionProperties">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.SectionProperties">SectionProperties</see>.
            </summary>
            <remarks>
            <p class="body">
            This method returns an instance which contains a reference to this class,
            which enables the instance to observe the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property setting, so that the developer can work in the unit of measure with which
            he is most comfortable.
            </p>
            <p class="body">
            The instance returned from this method can be passed to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.DefineSection(Infragistics.Documents.Word.SectionProperties)">DefineSection</see>
            method.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.CreateTableBorderProperties">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.TableBorderProperties">TableBorderProperties</see>
            instance.
            </summary>
            <remarks>
            <p class="body">
            This method returns an instance which contains a reference to this class,
            which enables the instance to observe the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property setting, so that the developer can work in the unit of measure with which
            he is most comfortable.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.CreateTextHyperlink(System.String)">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.TextHyperlink">TextHyperlink</see>
            instance which can be used to add a textual hyperlink to the document.
            </summary>
            <remarks>
            <p class="body">
            The instance returned from this method can be passed to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddHyperlink(Infragistics.Documents.Word.TextHyperlink)">AddHyperlink</see>
            method.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.CreateTextHyperlink(System.String,System.String)">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.TextHyperlink">TextHyperlink</see>
            instance which can be used to add a textual hyperlink to the document.
            </summary>
            <remarks>
            <p class="body">
            The instance returned from this method can be passed to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddHyperlink(Infragistics.Documents.Word.TextHyperlink)">AddHyperlink</see>
            method.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.CreateInlinePicture(System.Drawing.Image)">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.InlinePicture">InlinePicture</see>.
            </summary>
            <remarks>
            <p class="body">
            This method returns an instance which contains a reference to this class,
            which enables the instance to observe the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property setting, so that the developer can work in the unit of measure with which
            he is most comfortable.
            </p>
            <p class="body">
            The instance returned from this method can be passed to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddInlinePicture(Infragistics.Documents.Word.InlinePicture)">AddInlinePicture</see>
            method.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.CreateInlineShape(Infragistics.Documents.Word.ShapeType)">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.InlineShape">InlineShape</see>.
            </summary>
            <param name="shapeType">
            A
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which defines the shape.
            </param>
            <remarks>
            <p class="body">
            This method returns an instance which contains a reference to this class,
            which enables the instance to observe the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property setting, so that the developer can work in the unit of measure with which
            he is most comfortable.
            </p>
            <p class="body">
            The instance returned from this method can be passed to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddInlineShape(Infragistics.Documents.Word.InlineShape)">AddInlineShape</see>
            method.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.CreateInlineShape(Infragistics.Documents.Word.Shape)">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.InlineShape">InlineShape</see>.
            </summary>
            <param name="shape">
            A previously created
            <see cref="T:Infragistics.Documents.Word.Shape">Shape</see>
            instance on which the returned InlineShape instance is based.
            </param>
            <remarks>
            <p class="body">
            This method returns an instance which contains a reference to this class,
            which enables the instance to observe the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property setting, so that the developer can work in the unit of measure with which
            he is most comfortable.
            </p>
            <p class="body">
            The instance returned from this method can be passed to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddInlineShape(Infragistics.Documents.Word.InlineShape)">AddInlineShape</see>
            method.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.CreatePageNumberField(Infragistics.Documents.Word.PageNumberFieldFormat)">
            <summary>
            Creates a new
            <see cref="T:Infragistics.Documents.Word.PageNumberField">PageNumberField</see>.
            </summary>
            <param name="format">
            A
            <see cref="T:Infragistics.Documents.Word.PageNumberFieldFormat">PageNumberFieldFormat</see>
            constant which defines the format for the page number field.
            </param>
            <remarks>
            <p class="body">
            This method returns an instance which contains a reference to this class,
            which enables the instance to observe the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property setting, so that the developer can work in the unit of measure with which
            he is most comfortable.
            </p>
            <p class="body">
            The instance returned from this method can be passed to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddInlineShape(Infragistics.Documents.Word.InlineShape)">AddInlineShape</see>
            method.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.StartDocument">
            <summary>
            Starts a word processing document.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.EndDocument">
            <summary>
            Closes a previously opened document.
            </summary>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartDocument">StartDocument</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document is currently open.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.EndDocument(System.Boolean)">
            <summary>
            Closes a previously opened document, optionally closing the writer.
            </summary>
            <param name="closeWriter">
            A boolean value which specifies whether the writer should also be closed.
            </param>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartDocument">StartDocument</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document is currently open.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddEmptyParagraph">
            <summary>
            Adds a paragraph with no content.
            </summary>
            <remarks>
            <p class="body">
            Word processing content consumers such as MS Word may retain the previous
            paragraph's properties when a new paragraph is added. Adding an empty
            paragraph after a paragraph with non-default formatting attributes
            prevents subsequent paragraphs from inheriting these attributes.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">
            <summary>
            Starts a new paragraph in the document with the default formatting.
            </summary>
            <remarks>
            <p class="body">
            This method starts a &lt;paragraph&gt; element.
            Callers are responsible for closing this element. The
            &lt;paragraph&gt; element can be closed by calling the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndParagraph">EndParagraph</see>
            method.
            </p>
            <p class="body">
            This overload uses the default alignment (left) with no indentation.
            To specify formatting attributes such as alignment, indentation, etc., use the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph(Infragistics.Documents.Word.ParagraphProperties)">StartParagraph(ParagraphProperties)</see>
            method.
            </p>
            </remarks>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndParagraph">EndParagraph</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document is currently open.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph(Infragistics.Documents.Word.ParagraphProperties)">
            <summary>
            Starts a new paragraph in the document.
            </summary>
            <remarks>
            <p class="body">
            This method starts a &lt;p&gt; element.
            Callers are responsible for closing this element. The
            &lt;p&gt; element can be closed by calling the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndParagraph">EndParagraph</see>
            method.
            </p>
            </remarks>
            <param name="properties">
            A
            <see cref="T:Infragistics.Documents.Word.ParagraphProperties">ParagraphProperties</see>
            instance which defines properties such as alignment and indentation for the paragraph.
            An new instance of this class can be obtained by calling the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.CreateParagraphProperties">CreateParagraphProperties</see>
            method.
            </param>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document is currently open.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.EndParagraph">
            <summary>
            Closes a previously created paragraph.
            </summary>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddNewLine">
            <summary>
            Adds a text run consisting of the newline character to the current paragraph.
            </summary>
            <remarks>
            <p class="body">
            The actual character code(s) used in the generated content are determined by the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.NewLineType">NewLineType</see>
            property.
            </p>
            <p class="body">
            Before the AddNewLine method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            <p class="body">
            Some consumers do not always recognize newline characters within the content.
            For example, MS Word does not escape the current line when the paragraph appears
            within a table cell. The
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddEmptyParagraph">AddEmptyParagraph</see>
            method can be used as an alternative to this method, although this requires closing the current
            paragraph prior to calling the method.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddNewLine(Infragistics.Documents.Word.NewLineType)">
            <summary>
            Adds a text run consisting of the newline character to the current paragraph.
            </summary>
            <param name="newLineType">
            A
            <see cref="T:Infragistics.Documents.Word.NewLineType">NewLineType</see>
            constant which describes the method used to define the actual character codes
            used in the generated output.
            </param>
            <remarks>
            <p class="body">
            Before the AddNewLine method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            <p class="body">
            Some consumers do not always recognize newline characters within the content.
            For example, MS Word does not escape the current line when the paragraph appears
            within a table cell. The
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddEmptyParagraph">AddEmptyParagraph</see>
            method can be used as an alternative to this method, although this requires closing the current
            paragraph prior to calling the method.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddTextRun(System.String)">
            <summary>
            Adds a text run to the current paragraph.
            </summary>
            <param name="text">The string value to write.</param>
            <remarks>
            <p class="body">
            Before the AddTextRun method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddTextRun(System.String,Infragistics.Documents.Word.Font)">
            <summary>
            Adds a text run to the current paragraph.
            </summary>
            <param name="text">The string value to write.</param>
            <param name="font">The font that is applied to all characters in the run.</param>
            <remarks>
            <p class="body">
            A new Font instance can be obtained using the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.CreateFont">CreateFont</see>
            method. An existing Font instance can also be used; changing properties on
            that instance does not affect previously added text runs because the information
            is written to the stream immediately.
            </p>
            <p class="body">
            Before the AddTextRun method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddTextRun(System.String,Infragistics.Documents.Word.Font,System.Nullable{System.Boolean})">
            <summary>
            Adds a text run to the current paragraph.
            </summary>
            <param name="text">The string value to write.</param>
            <param name="font">The font that is applied to all characters in the run.</param>
            <param name="checkSpellingAndGrammar">A boolean value specifying whether the contents of the run are checked for spelling and grammar.</param>
            <remarks>
            <p class="body">
            Before the AddTextRun method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddTextRun(Infragistics.Documents.Word.TextRun)">
            <summary>
            Adds a text run to the current paragraph.
            </summary>
            <param name="textRun">
            A
            <see cref="T:Infragistics.Documents.Word.TextRun">TextRun</see>
            instance which defines the properties of the text run.
            </param>
            <remarks>
            <p class="body">
            Before the AddTextRun method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddHyperlink(System.String,System.String)">
            <summary>
            Adds a textual hyperlink to the current paragraph.
            </summary>
            <param name="address">The address for the hyperlink.</param>
            <param name="text">The text displayed for the hyperlink.</param>
            <remarks>
            <p class="body">
            Before the AddHyperlink method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddHyperlink(System.String,System.String,Infragistics.Documents.Word.Font)">
            <summary>
            Adds a textual hyperlink to the current paragraph.
            </summary>
            <param name="address">The address for the hyperlink.</param>
            <param name="text">The text displayed for the hyperlink.</param>
            <param name="font">
            The
            <see cref="T:Infragistics.Documents.Word.Font">Font</see>
            which defines the formatting attributes for the text that is displayed.
            </param>
            <remarks>
            <p class="body">
            Before the AddHyperlink method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddHyperlink(System.String,System.String,System.String)">
            <summary>
            Adds a textual hyperlink to the current paragraph.
            </summary>
            <param name="address">The address for the hyperlink.</param>
            <param name="text">The text displayed for the hyperlink.</param>
            <param name="toolTipText">The text that is displayed when the user hovers the cursor over this hyperlink.</param>
            <remarks>
            <p class="body">
            Before the AddHyperlink method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddHyperlink(System.String,System.String,Infragistics.Documents.Word.Font,System.String)">
            <summary>
            Adds a textual hyperlink to the current paragraph.
            </summary>
            <param name="address">The address for the hyperlink.</param>
            <param name="text">The text displayed for the hyperlink.</param>
            <param name="font">
            The
            <see cref="T:Infragistics.Documents.Word.Font">Font</see>
            which defines the formatting attributes for the text that is displayed.
            </param>
            <param name="toolTipText">The text that is displayed when the user hovers the cursor over this hyperlink.</param>
            <remarks>
            <p class="body">
            Before the AddHyperlink method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddHyperlink(System.String,System.Collections.Generic.IList{Infragistics.Documents.Word.TextRun},System.String)">
            <summary>
            Adds a textual hyperlink to the current paragraph.
            </summary>
            <param name="address">The address for the hyperlink.</param>
            <param name="textRuns">
            A list of
            <see cref="T:Infragistics.Documents.Word.TextRun">TextRun</see>
            instances which define the rich content for the hyperlink.
            </param>
            <param name="toolTipText">The text that is displayed when the user hovers the cursor over this hyperlink.</param>
            <remarks>
            <p class="body">
            This overload makes it possible for the developer to display text with mixed
            font attributes in the hyperlink. Each text fragment with different font
            attributes must be manifested as a separate text run. Each one is added to
            the <paramref name="textRuns"/> list prior to calling the method.
            </p>
            <p class="body">
            Before the AddHyperlink method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            <p class="body">
            In the case where the <paramref name="address"/> begins with "www.", the prefix
            "http://" will be prepended to avoid creating a malformed URI.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddHyperlink(Infragistics.Documents.Word.TextHyperlink)">
            <summary>
            Adds a textual hyperlink to the current paragraph.
            </summary>
            <param name="hyperlink">
            A
            <see cref="T:Infragistics.Documents.Word.TextHyperlink">TextHyperlink</see>
            instance which defines the properties of the hyperlink.
            </param>
            <remarks>
            <p class="body">
            A
            <see cref="T:Infragistics.Documents.Word.TextHyperlink">TextHyperlink</see>
            instance can be created using the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.CreateTextHyperlink(System.String)">CreateTextHyperlink</see>
            method.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddInlinePicture(System.Drawing.Image)">
            <summary>
            Adds an inline picture to the current paragraph.
            </summary>
            <param name="image">The image on which the picture is based.</param>
            <remarks>
            <p class="body">
            Before the AddInlinePicture method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddInlinePicture(System.Drawing.Image,System.Nullable{System.Drawing.SizeF})">
            <summary>
            Adds an inline picture with the specified size to the current paragraph.
            </summary>
            <param name="image">The image on which the picture is based.</param>
            <param name="size">If specified, the size at which the picture is rendered. If null, the natural size of the associated image is used.</param>
            <remarks>
            <p class="body">
            Before the AddInlinePicture method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddInlinePicture(Infragistics.Documents.Word.InlinePicture)">
            <summary>
            Adds the specified
            <see cref="T:Infragistics.Documents.Word.InlinePicture">InlinePicture</see>
            to the current paragraph.
            </summary>
            <param name="inlinePicture">
            The
            <see cref="T:Infragistics.Documents.Word.InlinePicture">InlinePicture</see>
            to add.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddInlineShape(Infragistics.Documents.Word.ShapeType)">
            <summary>
            Adds an inline
            <see cref="T:Infragistics.Documents.Word.VmlShape">shape</see>
            to the current paragraph, using Vector Markup Language (VML).
            </summary>
            <param name="shapeType">
            A
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which defines the type of shape to add.
            </param>
            <remarks>
            <p class="body">
            Before the AddInlineShape method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
            <seealso cref="T:Infragistics.Documents.Word.ShapeType">ShapeType enumeration</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddInlineShape(Infragistics.Documents.Word.ShapeType,System.Nullable{System.Drawing.Size})">
            <summary>
            Adds an inline
            <see cref="T:Infragistics.Documents.Word.VmlShape">shape</see>
            to the current paragraph, using Vector Markup Language (VML).
            </summary>
            <param name="shapeType">
            A
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which defines the type of shape to add.
            </param>
            <param name="size">If specified, the size at which the shape is rendered. If null, the shape is rendered at a size of one inch square..</param>
            <remarks>
            <p class="body">
            Before the AddInlineShape method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
            <seealso cref="T:Infragistics.Documents.Word.ShapeType">ShapeType enumeration</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddInlineShape(Infragistics.Documents.Word.VmlShape)">
            <summary>
            Adds an inline
            <see cref="T:Infragistics.Documents.Word.VmlShape">shape</see>
            to the current paragraph, using Vector Markup Language (VML).
            </summary>
            <param name="shape">
            The shape to add, such as a line, rectangle, ellipse, etc.
            </param>
            <remarks>
            <p class="body">
            Before the AddInlineShape method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
            <seealso cref="T:Infragistics.Documents.Word.ShapeType">ShapeType enumeration</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddInlineShape(Infragistics.Documents.Word.InlineShape)">
            <summary>
            Adds an
            <see cref="T:Infragistics.Documents.Word.InlineShape">InlineShape</see>
            to the current paragraph, using Vector Markup Language (VML).
            </summary>
            <param name="inlineShape">
            The instance to add.
            </param>
            <remarks>
            <p class="body">
            Before the AddInlineShape method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
            <seealso cref="T:Infragistics.Documents.Word.ShapeType">ShapeType enumeration</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddAnchoredPicture(System.Drawing.Image)">
            <summary>
            Adds an anchored picture to the current paragraph.
            </summary>
            <param name="image">The image on which the picture is based.</param>
            <remarks>
            <p class="body">
            Before the AddAnchoredPicture method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddAnchoredPicture(Infragistics.Documents.Word.AnchoredPicture)">
            <summary>
            Adds an anchored picture to the current paragraph.
            </summary>
            <param name="anchoredPicture">
            The
            <see cref="T:Infragistics.Documents.Word.AnchoredPicture">AnchoredPicture</see>
            instance to be added to the paragraph.
            </param>
            <remarks>
            <p class="body">
            An AnchoredPicture instance can be obtained using the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.CreateAnchoredPicture(System.Drawing.Image)">CreateAnchoredPicture</see>
            method. An existing instance can also be used; changing properties on
            that instance does not affect previously added pictures because the information
            is written to the stream immediately.
            </p>
            <p class="body">
            Before the AddAnchoredPicture method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddAnchoredShape(Infragistics.Documents.Word.ShapeType)">
            <summary>
            Adds an anchored shape with the specified size to the current paragraph.
            </summary>
            <param name="shapeType">
            A
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which defines the type of shape to add.
            </param>
            <remarks>
            <p class="body">
            Before the AddAnchoredShape method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <seealso cref="T:Infragistics.Documents.Word.ShapeType">ShapeType enumeration</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddAnchoredShape(Infragistics.Documents.Word.AnchoredShape)">
            <summary>
            Adds an anchored shape with the specified size to the current paragraph.
            </summary>
            <param name="anchoredShape">
            The
            <see cref="T:Infragistics.Documents.Word.AnchoredShape">AnchoredShape</see>
            instance to be added to the paragraph.
            </param>
            <remarks>
            <p class="body">
            An AnchoredShape instance can be obtained using the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.CreateAnchoredShape(Infragistics.Documents.Word.ShapeType)">CreateAnchoredShape</see>
            method. An existing instance can also be used; changing properties on
            that instance does not affect previously added shapes because the information
            is written to the stream immediately.
            </p>
            <p class="body">
            Before the AddAnchoredShape method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <seealso cref="T:Infragistics.Documents.Word.ShapeType">ShapeType enumeration</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.StartTable(System.Int32)">
            <summary>
            Starts a new table in the document with the specified number of columns.
            </summary>
            <param name="columnCount">
            The total number of columns in the table. Columns added with this overload
            have a width of one inch.
            Note that by default, actual column widths are
            determined automatically; to override this behavior and apply explicit
            widths, use the overload that takes a
            <see cref="T:Infragistics.Documents.Word.TableProperties">TableProperties</see>
            instance, and set the
            <see cref="P:Infragistics.Documents.Word.TableProperties.Layout">Layout</see>
            property of the TableProperties to 'Fixed'.
            </param>
            <remarks>
            <p class="body">
            This method starts a &lt;tbl&gt; element.
            Callers are responsible for closing this element. The
            &lt;tbl&gt; element can be closed by calling the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndTable">EndTable</see>
            method.
            </p>
            </remarks>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndTable">EndTable</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document is currently open.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.StartTable(System.Int32,Infragistics.Documents.Word.TableProperties)">
            <summary>
            Starts a new table in the document with the specified number of columns.
            </summary>
            <param name="columnCount">
            The total number of columns in the table. Columns added with this overload
            have a width of one inch.
            Note that by default, actual column widths are
            determined automatically; to override this behavior and apply explicit
            widths, use the overload that takes a
            <see cref="T:Infragistics.Documents.Word.TableProperties">TableProperties</see>
            instance, and set the
            <see cref="P:Infragistics.Documents.Word.TableProperties.Layout">Layout</see>
            property of the TableProperties to 'Fixed'.
            </param>
            <param name="properties">
            A reference to a
            <see cref="T:Infragistics.Documents.Word.TableProperties">TableProperties</see>
            instance which defines formatting attributes for the table.
            </param>
            <remarks>
            <p class="body">
            This method starts a &lt;tbl&gt; element.
            Callers are responsible for closing this element. The
            &lt;tbl&gt; element can be closed by calling the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndTable">EndTable</see>
            method.
            </p>
            </remarks>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndTable">EndTable</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document is currently open.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.StartTable(System.Collections.Generic.IList{System.Single},Infragistics.Documents.Word.TableProperties)">
            <summary>
            Starts a new table in the document with the number of columns
            equal to the number of elements in the specified <paramref name="columnWidths"/>
            list, and with the width of each column defined by the corresponding value in the list.
            </summary>
            <param name="columnWidths">
            A list of values which contains the width for each column to be added.
            The number of columns is determined by the number of elements in the list.
            The unit of measure for each value in the list is determined by the value of the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property.
            </param>
            <param name="properties">
            A reference to a
            <see cref="T:Infragistics.Documents.Word.TableProperties">TableProperties</see>
            instance which defines formatting attributes for the table.
            </param>
            <remarks>
            <p class="body">
            This method starts a &lt;tbl&gt; element.
            Callers are responsible for closing this element. The
            &lt;tbl&gt; element can be closed by calling the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndTable">EndTable</see>
            method.
            </p>
            <p class="body">
            A table must contain at least one and no more than 63 columns; specifying
            a value outside this range results in an exception being thrown.
            </p>
            </remarks>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndTable">EndTable</seealso>
            <exception cref="T:System.ArgumentNullException">Thrown if the value of the <paramref name="columnWidths"/> parameter is null.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown if the list referenced by the <paramref name="columnWidths"/> parameter is empty.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document is currently open.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.StartTableRow">
            <summary>
            Starts a new row in the current table with the default height.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.StartTableRow(Infragistics.Documents.Word.TableRowProperties)">
            <summary>
            Starts a new row in the current table.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.EndTableRow">
            <summary>
            Closes the current table row.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.StartTableCell(Infragistics.Documents.Word.TableCellProperties)">
            <summary>
            Starts a new cell in the current row.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.EndTableCell">
            <summary>
            Closes a previously opened cell.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddTableCell(System.String)">
            <summary>
            Adds a cell to the current row, with one paragraph containing
            a simple text run with the specified <paramref name="text"/>.
            </summary>
            <param name="text">The string to be displayed within the cell.</param>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddTableCell(System.String,Infragistics.Documents.Word.TableCellProperties)">
            <summary>
            Adds a cell to the current row, with one paragraph containing
            a simple text run with the specified <paramref name="text"/>,
            optionally with the specified properties.
            </summary>
            <param name="text">The string to be displayed within the cell.</param>
            <param name="properties">
            A
            <see cref="T:Infragistics.Documents.Word.TableCellProperties">TableCellProperties</see>
            instance which defines the formatting attributes for the cell.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.EndTable">
            <summary>
            Closes a previously opened table.
            </summary>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartTable(System.Int32)">StartTable</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or table is currently open.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.DefineSection(Infragistics.Documents.Word.SectionProperties)">
            <summary>
            Creates a section in the document, which defines the pagination
            for paragraphs and tables that were written since the last section
            was created.
            </summary>
            <param name="properties">
            A
            <see cref="T:Infragistics.Documents.Word.SectionProperties">SectionProperties</see>
            instance which defines properties such as page size, margins, and orientation.
            An new instance of this class can be obtained by calling the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.CreateSectionProperties">CreateSectionProperties</see>
            method.
            </param>
            <remarks>
            <p class="body">
            WordprocessingML does not natively store the concept of pages, since the
            number of pages in a document is driven by the nature of the content.
            Consider the case where the user changes the size of the font for all text
            in a document; the number of pages in that document is likely to change,
            since factors such as the number of characters in the document and
            the size of each character determine the total amount of space required to
            present the content.
            </p>
            <p class="body">
            This method defines a section which applies to content (i.e., paragraphs
            and tables) that was previously written to the document. The properties
            of the object passed to this method define the page size, orientation,
            and margins for the pages on which that content will appear, thus defining
            a section in the document to which the designated content belongs.
            </p>
            <p class="body">
            <b>Example: </b> To add three paragraphs which are to appear on pages that
            are 7" x 5" at landscape orientation, first call the StartDocument, AddTextRun,
            and EndDocument methods for each of the three paragraphs. Next, call the
            DefineSection method, passing in a SectionProperties instance on which the
            PageSize property is set to (7, 5), and the PageOrientation property is set
            to 'Landscape'.
            </p>
            <p class="body">
            The
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.FinalSectionProperties">FinalSectionProperties</see>
            property can be used to define the pagination for all content which is
            not associated with any section defined by this method.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document is currently open, or if a paragraph is currently open.</exception>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.CreateSectionProperties">CreateSectionProperties</seealso>
            <seealso cref="P:Infragistics.Documents.Word.WordDocumentWriter.FinalSectionProperties">FinalSectionProperties</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.FromPixels(System.Int32,System.Single)">
            <summary>
            Converts the specified <paramref name="value"/> into the specified unit of measure.
            </summary>
            <param name="value">A value which represents a number of pixels.</param>
            <param name="dpi">The resolution, expressed in dots per inch.</param>
            <remarks>
            <p class="body">
            The unit of measure in which the return value is expressed
            is defined by the value of the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.ToPixels(System.Single,System.Single)">
            <summary>
            Converts the specified <paramref name="value"/> into a pixel
            value at the specified resolution.
            </summary>
            <param name="value">
            A value which represents a linear graphical quantity. The implied unit
            of measure is defined by the value of the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property.
            </param>
            <param name="dpi">The resolution, expressed in dots per inch.</param>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.FromPixels(System.Int32,System.Single,Infragistics.Documents.Word.UnitOfMeasurement)">
            <summary>
            Converts the specified <paramref name="value"/> into the specified unit of measure.
            </summary>
            <param name="value">A value which represents a number of pixels.</param>
            <param name="dpi">The resolution, expressed in dots per inch.</param>
            <param name="unit">
            A
            <see cref="T:Infragistics.Documents.Word.UnitOfMeasurement">UnitOfMeasurement</see>
            constant which defines the units into which the value is to be converted.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.ToPixels(System.Single,System.Single,Infragistics.Documents.Word.UnitOfMeasurement)">
            <summary>
            Converts the specified <paramref name="value"/> into a pixel
            value at the specified resolution.
            </summary>
            <param name="value">A value which represents a linear graphical quantity.</param>
            <param name="dpi">The resolution, expressed in dots per inch.</param>
            <param name="unit">
            A
            <see cref="T:Infragistics.Documents.Word.UnitOfMeasurement">UnitOfMeasurement</see>
            constant which defines the unit of measure in which the <paramref name="value"/>
            is expressed.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.ConvertUnits(System.Single,Infragistics.Documents.Word.UnitOfMeasurement,Infragistics.Documents.Word.UnitOfMeasurement)">
            <summary>
            Converts the specified floating-point <paramref name="value"/>
            based on the specified units of measurement.
            </summary>
            <param name="value">The value to convert.</param>
            <param name="from">
            A
            <see cref="T:Infragistics.Documents.Word.UnitOfMeasurement">UnitOfMeasurement</see>
            constant which defines the unit of measure of the specified <paramref name="value"/>.
            </param>
            <param name="to">
            A UnitOfMeasurement constant which defines the unit of measure of the returned value.
            </param>
            <returns>The converted value.</returns> 
            <remarks>
            <p class="body">
            Use the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property to define the implied unit of measure for all properties which represent
            a linear graphical quantity such as font sizes, cell widths, picture positions, etc.
            </p>
            <p class="body">
            One inch is equal to 1,440 twips (twentieths of a desktop point).
            </p>
            <p class="body">
            One inch is equal to 72 desktop points.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.Close">
            <summary>
            Closes the writer and finalizes content.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddSectionHeaderFooter(Infragistics.Documents.Word.SectionHeaderFooterParts)">
            <summary>
            Adds headers and/or footers to the main section of the document.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.AddSectionHeaderFooter(Infragistics.Documents.Word.SectionHeaderFooterParts,Infragistics.Documents.Word.SectionProperties)">
            <summary>
            Adds headers and/or footers to the specified section of the document.
            </summary>
            <param name="parts">
            A bitflags value which defines the header and/or footer parts to be included in the section.
            </param>
            <param name="sectionProperties">
            A
            <see cref="T:Infragistics.Documents.Word.SectionProperties">SectionProperties</see>
            instance which contains the properties for the document section in which the headers/footers
            will appear. When null is specified, headers/footers are created for the final section,
            with the section properties being defined by the instance returned from the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.FinalSectionProperties"></see>
            property.
            </param>
            <seealso cref="P:Infragistics.Documents.Word.WordDocumentWriter.FinalSectionProperties">FinalSectionProperties</seealso>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.DefineSection(Infragistics.Documents.Word.SectionProperties)">DefineSection</seealso>
            <seealso cref="T:Infragistics.Documents.Word.SectionProperties">SectionProperties class</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.Flush">
            <summary>
            Flushes the contents of the buffer to the underlying stream.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.System#IDisposable#Dispose">
            <summary>
            Releases any resources being used by this object.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordDocumentWriter.Dispose">
            <summary>
            Releases any resources being used by this object.
            </summary>
            <remarks>
            <p class="body">
            Derived classes must override this method and release any resources
            currently in use.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentWriter.DocumentProperties">
            <summary>
            Defines the properties of the document such as Title, Author, Manager, etc.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentWriter.DefaultParagraphProperties">
            <summary>
            Defines the default formatting for paragraphs which have
            no more specific formatting attributes defined.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentWriter.FinalSectionProperties">
            <summary>
            Defines the page-related properties of the document such as size,
            margins, and orientation. Applies to all content in the document
            which follows the last explicitly defined section.
            </summary>
            <remarks>
            <p class="body">
            This property defines the pagination for all content within the
            document which is not explicitly associated with a section defined
            via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.DefineSection(Infragistics.Documents.Word.SectionProperties)">DefineSection</see>
            method. Sections defined by that method apply to all content that was written
            prior to the method call; from this it follows that once the DefineSection method
            is called, pagination is then explicitly defined for all previously written content
            in the document. As such, the pagination as defined by this property applies to the
            content that was written after the last call to DefineSection, or to the "final"
            section of the document.
            </p>
            <p class="body">
            In the case where the 
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.DefineSection(Infragistics.Documents.Word.SectionProperties)">DefineSection</see>
            method is not used, this property defines the pagination for the entire document.
            </p>
            <p class="body">
            Headers and/or footers can be defined for the final section using the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddSectionHeaderFooter(Infragistics.Documents.Word.SectionHeaderFooterParts)">AddHeaderFooterSection</see>
            method.
            </p>
            </remarks>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.DefineSection(Infragistics.Documents.Word.SectionProperties)">DefineSection</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentWriter.DefaultTableProperties">
            <summary>
            Defines the default formatting for tables which have
            no more specific formatting attributes defined.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentWriter.DefaultFont">
            <summary>
            Returns the font that determines the formatting for all text runs
            which do not have more specific formatting attributes defined.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">
            <summary>
            Returns or sets a value indicating the implied unit of measurement
            for properties which represent graphical quantities.
            </summary>
            <remarks>
            <p class="body">
            The default unit of measurement for the properties which represent
            graphical quantities is the desktop publishing point, which is equivalent
            to 1/72 of an inch. This property can be changed to redefine that unit of
            measurement, so that graphical properties can be interacted with using units
            that are most comfortable to the end developer.
            </p>
            <p class="body">
            All property values are stored internally as twips (twentieths of a point),
            and coverted as appropriate in the property's get and set method implementations.
            The value of the Unit property can be changed at any time by the developer
            without affecting previously persisted property values.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentWriter.WriterState">
            <summary>
            Returns a bitflag value which describes the current state of the writer.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordDocumentWriter.NewLineType">
            <summary>
            Returns or sets a value which determines the method used to
            represent a newline in the generated output.
            </summary>
            <remarks>
            <p class="body">
            The newline character(s) can be represented as either a line break
            or a carriage return. A document consumer may interpret a line break
            or carriage return differently depending on the circumstances under
            which it is used. For example, paragraph justification can behave
            differently in MS Word depending on whether a line break is contained
            within the paragraph. A carriage return is recognized in a standard
            paragraph as a line-breaking character, but is not recognized when the
            paragraph is contained within a table cell.
            </p>
            </remarks>
        </member>
        <member name="T:Infragistics.Documents.Word.WordprocessingMLWriter">
            <summary>
            Represents a writer that provides a fast, non-cached, forward-only way
            of generating streams or files containing XML data that conforms
            to the WordprocessingML OpenXml specification.
            </summary>
            <remarks>
            <p class="body">
            The WordprocessingMLWriter class is a concrete implementation of the
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            class which produces content that is recognizable by WordprocessingML OpenXml
            consumers such as Microsoft Word 2007.
            </p>
            <p class="body">
            The developer communicates with the WordDocumentWriter in a "forward-only"
            manner; as soon as a content creation method  is called, that content is
            irreversibly written to the target document. While this method is generally
            considered to be more complicated, it offers the benefit of a greatly reduced
            memory footprint over an object-driven approach.
            </p>
            <p class="body">
            A new instance of this class can be created using the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.Create(System.String)">Create</see>
            method.
            </p>
            <p class="body">
            To begin a new WordprocessingML document, the developer calls the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartDocument">StartDocument</see>
            method. This method starts the &lt;document&gt; and &lt;body&gt; elements for the document.
            After execution returns from the method, these elements are left open, so that content can be added.
            The elements are not closed until the developer calls the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndDocument(System.Boolean)">EndDocument</see>
            method, or until the WordDocumentWriter instance is disposed of.
            </p>
            <p class="body">
            After the StartDocument method is called, blocks of content can be added via (for example) the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method. After adding a paragraph, the developer will typically populate it with content using methods like
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddTextRun(System.String)">AddTextRun</see>
            and
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddHyperlink(System.String,System.String)">AddHyperlink</see>.
            These methods are executed as atomic operations, i.e., all content required to represent the content run
            is added to the document stream before execution returns from the method.
            After all content has been added to the paragraph, the developer calls the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndParagraph">EndParagraph</see>
            method to close the paragraph element.
            </p>
            <p class="body">
            Attempting to add content to the document when the writer is not in the required
            state for the operation causes a
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriterException">WordDocumentWriterException</see>
            to be thrown. For example, calling the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddTextRun(System.String)">AddTextRun</see>
            method when the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method had not previously been called to open a paragraph is not valid (since a text run must
            belong to a paragraph) and will cause an exception to be thrown. These exceptions can be handled
            for debugging purposes during the early phases of application development, but there is generally
            no way for the developer to recover gracefully from these exceptions, and they should be interpreted
            as in indication that there is a problem with the client code.
            </p>
            <p class="body">
            After all content blocks have been added, the developer calls the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndDocument(System.Boolean)">EndDocument</see>
            method to close the &lt;document&gt; and &lt;body&gt; elements. 
            </p>
            <p class="body">
            Page size, margins, and orientation can be set for the entire document via the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.FinalSectionProperties">FinalSectionProperties</see>
            property, and for a range of previously written paragraphs and tables via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.DefineSection(Infragistics.Documents.Word.SectionProperties)">DefineSection</see>
            method.
            </p>
            <p class="body">
            The content stream is closed when the WordDocumentWriter is disposed of,
            and the resulting WordprocessingML file is created.
            </p>
            <p class="body">
            The developer can specify the unit of measure to be used when interpreting
            properties which represent graphical measurements using the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property. The objects returned from the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.CreateFont">CreateFont</see>,
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.CreateParagraphProperties">CreateParagraphProperties</see>,
            and
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.CreateAnchoredPicture(System.Drawing.Image)">CreateAnchoredPicture</see>
            methods maintain a reference to this class, and use the value of the Unit property to determine the unit of measure
            in which to express certain property values. For example, if the developer assigns a value of 'Inch' to the Unit property,
            then obtains a Font using the CreateFont method, the get method of the Size property will return the value expressed in
            inches, and the set method will assume the values assigned to it to be expressed in inches. This association is maintained
            for the lifetime of the object, so that if the developer changes the value of the Unit property, the new unit of measure is
            automatically used the next time the property is accessed.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.StartDocument">
            <summary>
            Starts a WordprocessingML document.
            </summary>
            <remarks>
            <p class="body">
            This method starts the &lt;document&gt; and &lt;body&gt; elements
            for the wordprocessingML document. Callers are responsible for
            closing all elements written to the document stream. The
            &lt;document&gt; and &lt;body&gt; elements can be closed by calling
            the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndDocument(System.Boolean)">EndDocument</see>
            method.
            </p>
            </remarks>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndDocument(System.Boolean)">EndDocument</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if the XmlWriter used to create the content could not be opened.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.EndDocument(System.Boolean)">
            <summary>
            Closes a previously opened document, optionally closing the writer.
            </summary>
            <param name="closeWriter">
            A boolean value which specifies whether the writer should also be closed.
            </param>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartDocument">StartDocument</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document is currently open.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.StartParagraph(Infragistics.Documents.Word.ParagraphProperties)">
            <summary>
            Starts a new paragraph in the document.
            </summary>
            <remarks>
            <p class="body">
            This method starts a &lt;p&gt; element.
            Callers are responsible for closing this element. The
            &lt;p&gt; element can be closed by calling the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndParagraph">EndParagraph</see>
            method.
            </p>
            </remarks>
            <param name="properties">
            A
            <see cref="T:Infragistics.Documents.Word.ParagraphProperties">ParagraphProperties</see>
            instance which defines properties such as alignment and indentation for the paragraph.
            An new instance of this class can be obtained by calling the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.CreateParagraphProperties">CreateParagraphProperties</see>
            method.
            </param>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document is currently open.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.EndParagraph">
            <summary>
            Closes a previously created paragraph.
            </summary>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.AddTextRun(Infragistics.Documents.Word.TextRun)">
            <summary>
            Adds a text run to the current paragraph.
            </summary>
            <param name="textRun">
            A
            <see cref="T:Infragistics.Documents.Word.TextRun">TextRun</see>
            instance which defines the properties of the text run.
            </param>
            <remarks>
            <p class="body">
            Before the AddTextRun method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.AddHyperlink(Infragistics.Documents.Word.TextHyperlink)">
            <summary>
            Adds a textual hyperlink to the current paragraph.
            </summary>
            <param name="hyperlink">
            A
            <see cref="T:Infragistics.Documents.Word.TextHyperlink">TextHyperlink</see>
            instance which defines the properties of the hyperlink.
            </param>
            <seealso cref="T:Infragistics.Documents.Word.TextHyperlink">TextHyperlink class</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.AddInlinePicture(Infragistics.Documents.Word.InlinePicture)">
            <summary>
            Adds the specified
            <see cref="T:Infragistics.Documents.Word.InlinePicture">InlinePicture</see>
            to the current paragraph.
            </summary>
            <param name="inlinePicture">
            The
            <see cref="T:Infragistics.Documents.Word.InlinePicture">InlinePicture</see>
            to add.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.AddAnchoredPicture(Infragistics.Documents.Word.AnchoredPicture)">
            <summary>
            Adds an anchored picture with the specified size to the current paragraph.
            </summary>
            <param name="anchoredPicture">
            The
            <see cref="T:Infragistics.Documents.Word.AnchoredPicture">AnchoredPicture</see>
            instance to be added to the paragraph.
            </param>
            <remarks>
            <p class="body">
            An AnchoredPicture instance can be obtained using the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.CreateAnchoredPicture(System.Drawing.Image)">CreateAnchoredPicture</see>
            method. An existing instance can also be used; changing properties on
            that instance does not affect previously added pictures because the information
            is written to the stream immediately.
            </p>
            <p class="body">
            Before the AddAnchoredPicture method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.AddAnchoredShape(Infragistics.Documents.Word.AnchoredShape)">
            <summary>
            Adds an anchored shape with the specified size to the current paragraph.
            </summary>
            <param name="anchoredShape">
            The
            <see cref="T:Infragistics.Documents.Word.AnchoredShape">AnchoredShape</see>
            instance to be added to the paragraph.
            </param>
            <remarks>
            <p class="body">
            An AnchoredShape instance can be obtained using the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.CreateAnchoredShape(Infragistics.Documents.Word.ShapeType)">CreateAnchoredShape</see>
            method. An existing instance can also be used; changing properties on
            that instance does not affect previously added shapes because the information
            is written to the stream immediately.
            </p>
            <p class="body">
            Before the AddAnchoredShape method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            <p class="body">
            Shapes are rendered by the consumer using Vector Markup Language (VML),
            which is supported in both MS Word 2007 and MS Word 2010.
            </p>
            </remarks>
            <seealso cref="T:Infragistics.Documents.Word.ShapeType">ShapeType enumeration</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.AddInlineShape(Infragistics.Documents.Word.InlineShape)">
            <summary>
            Adds an
            <see cref="T:Infragistics.Documents.Word.InlineShape">InlineShape</see>
            to the current paragraph, using Vector Markup Language (VML).
            </summary>
            <param name="inlineShape">
            The instance to add.
            </param>
            <remarks>
            <p class="body">
            Before the AddInlineShape method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            <p class="body">
            Shapes are rendered by the consumer using Vector Markup Language (VML),
            which is supported in both MS Word 2007 and MS Word 2010.
            </p>
            </remarks>
            <seealso cref="T:Infragistics.Documents.Word.ShapeType">ShapeType enumeration</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.StartTable(System.Collections.Generic.IList{System.Single},Infragistics.Documents.Word.TableProperties)">
            <summary>
            Starts a new table in the document with the number of columns
            equal to the number of elements in the specified <paramref name="columnWidths"/>
            list, and with the width of each column defined by the corresponding value in the list.
            </summary>
            <param name="columnWidths">
            A list of values which contains the width for each column to be added.
            The number of columns is determined by the number of elements in the list.
            The unit of measure for each value in the list is determined by the value of the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.Unit">Unit</see>
            property.
            </param>
            <param name="properties">
            A reference to a
            <see cref="T:Infragistics.Documents.Word.TableProperties">TableProperties</see>
            instance which defines formatting attributes for the table.
            </param>
            <remarks>
            <p class="body">
            This method starts a &lt;tbl&gt; element.
            Callers are responsible for closing this element. The
            &lt;tbl&gt; element can be closed by calling the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndTable">EndTable</see>
            method.
            </p>
            <p class="body">
            A table must contain at least one and no more than 63 columns; specifying
            a value outside this range results in an exception being thrown.
            </p>
            </remarks>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndTable">EndTable</seealso>
            <exception cref="T:System.ArgumentNullException">Thrown if the value of the <paramref name="columnWidths"/> parameter is null.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">Thrown if the list referenced by the <paramref name="columnWidths"/> parameter is empty.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document is currently open.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.StartTableRow(Infragistics.Documents.Word.TableRowProperties)">
            <summary>
            Starts a new row in the current table.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.EndTableRow">
            <summary>
            Closes the current table row.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.StartTableCell(Infragistics.Documents.Word.TableCellProperties)">
            <summary>
            Starts a new cell in the current row.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.EndTableCell">
            <summary>
            Closes a previously opened cell.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.AddTableCell(System.String,Infragistics.Documents.Word.TableCellProperties)">
            <summary>
            Adds a cell to the current row, with one paragraph containing
            a simple text run with the specified <paramref name="text"/>,
            optionally with the specified properties.
            </summary>
            <param name="text">The string to be displayed within the cell.</param>
            <param name="properties">
            A
            <see cref="T:Infragistics.Documents.Word.TableCellProperties">TableCellProperties</see>
            instance which defines the formatting attributes for the cell.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.EndTable">
            <summary>
            Closes a previously opened table, optionally adding an empty paragraph.
            </summary>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartTable(System.Int32)">StartTable</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.DefineSection(Infragistics.Documents.Word.SectionProperties)">
            <summary>
            Creates a section in the document, which defines the pagination
            for paragraphs and tables that were written since the last section
            was created.
            </summary>
            <param name="properties">
            A
            <see cref="T:Infragistics.Documents.Word.SectionProperties">SectionProperties</see>
            instance which defines properties such as page size, margins, and orientation.
            An new instance of this class can be obtained by calling the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.CreateSectionProperties">CreateSectionProperties</see>
            method.
            </param>
            <remarks>
            <p class="body">
            WordprocessingML does not natively store the concept of pages, since the
            number of pages in a document is driven by the nature of the content.
            Consider the case where the user changes the size of the font for all text
            in a document; the number of pages in that document is likely to change,
            since factors such as the number of characters in the document and
            the size of each character determine the total amount of space required to
            present the content.
            </p>
            <p class="body">
            This method defines a section which applies to content (i.e., paragraphs
            and tables) that was previously written to the document. The properties
            of the object passed to this method define the page size, orientation,
            and margins for the pages on which that content will appear, thus defining
            a section in the document to which the designated content belongs.
            </p>
            <p class="body">
            <b>Example: </b> To add three paragraphs which are to appear on pages that
            are 7" x 5" at landscape orientation, first call the StartDocument, AddTextRun,
            and EndDocument methods for each of the three paragraphs. Next, call the
            DefineSection method, passing in a SectionProperties instance on which the
            PageSize property is set to (7, 5), and the PageOrientation property is set
            to 'Landscape'.
            </p>
            <p class="body">
            The
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.FinalSectionProperties">FinalSectionProperties</see>
            property can be used to define the pagination for all content which is
            not associated with any section defined by this method.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document is currently open, or if a paragraph is currently open.</exception>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.CreateSectionProperties">CreateSectionProperties</seealso>
            <seealso cref="P:Infragistics.Documents.Word.WordDocumentWriter.FinalSectionProperties">FinalSectionProperties</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.Close">
            <summary>
            Closes the writer and finalizes content.
            </summary>
            <remarks>
            <p class="body">
            If the 
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartDocument">StartDocument</see>
            has not been called prior to calling this method, this method does nothing.
            </p>
            <p class="body">
            If the StartDocument method was previously called, but the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndDocument(System.Boolean)">EndDocument</see>
            method was not, the EndDocument method is called by this method before proceeding.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.AddSectionHeaderFooter(Infragistics.Documents.Word.SectionHeaderFooterParts,Infragistics.Documents.Word.SectionProperties)">
            <summary>
            Adds headers and/or footers to the specified section of the document.
            </summary>
            <param name="parts">
            A bitflags value which defines the header and/or footer parts to be included in the section.
            </param>
            <param name="sectionProperties">
            A
            <see cref="T:Infragistics.Documents.Word.SectionProperties">SectionProperties</see>
            instance which contains the properties for the document section in which the headers/footers
            will appear. When null is specified, headers/footers are created for the final section,
            with the section properties being defined by the instance returned from the
            <see cref="P:Infragistics.Documents.Word.WordDocumentWriter.FinalSectionProperties"></see>
            property.
            </param>
            <seealso cref="P:Infragistics.Documents.Word.WordDocumentWriter.FinalSectionProperties">FinalSectionProperties</seealso>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.DefineSection(Infragistics.Documents.Word.SectionProperties)">DefineSection</seealso>
            <seealso cref="T:Infragistics.Documents.Word.SectionProperties">SectionProperties class</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.Flush">
            <summary>
            Flushes the contents of the buffer to the underlying stream.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLWriter.Dispose">
            <summary>
            Closes any open streams and releases any resources being use by this object.
            </summary>
            <remarks>
            <p class="body">
            If the document has been properly started but has not yet been closed
            by a call to the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.EndDocument(System.Boolean)">EndDocument</see>
            method, the EndDocument method is automatically called prior to closing and disposing the stream.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.WordprocessingMLWriter.DocumentProperties">
            <summary>
            Defines the properties of the document such as Title, Author, Manager, etc.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordprocessingMLWriter.DefaultParagraphProperties">
            <summary>
            Defines the default formatting for paragraphs which have
            no more specific formatting attributes defined.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordprocessingMLWriter.FinalSectionProperties">
            <summary>
            Defines the page-related properties of the document such as size,
            margins, and orientation. Applies to all content in the document
            which follows the last explicitly defined section.
            </summary>
            <remarks>
            <p class="body">
            This property defines the pagination for all content within the
            document which is not explicitly associated with a section defined
            via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.DefineSection(Infragistics.Documents.Word.SectionProperties)">DefineSection</see>
            method. Sections defined by that method apply to all content that was written
            prior to the method call; from this it follows that once the DefineSection method
            is called, pagination is then explicitly defined for all previously written content
            in the document. As such, the pagination as defined by this property applies to the
            content that was written after the last call to DefineSection, or to the "final"
            section of the document.
            </p>
            <p class="body">
            In the case where the 
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.DefineSection(Infragistics.Documents.Word.SectionProperties)">DefineSection</see>
            method is not used, this property defines the pagination for the entire document.
            </p>
            <p class="body">
            Headers and/or footers can be defined for the final section using the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddSectionHeaderFooter(Infragistics.Documents.Word.SectionHeaderFooterParts)">AddHeaderFooterSection</see>
            method.
            </p>
            </remarks>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.DefineSection(Infragistics.Documents.Word.SectionProperties)">DefineSection</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.WordprocessingMLWriter.DefaultTableProperties">
            <summary>
            Defines the default formatting for tables which have
            no more specific formatting attributes defined.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordprocessingMLWriter.DefaultFont">
            <summary>
            Returns the font that determines the formatting for all text runs
            which do not have more specific formatting attributes defined.
            </summary>
            <remarks>
            <p class="body">
            The DefaultFont property can be used to assign a document-level font,
            the attributes of which all text runs acquire when no more specific
            setting exists. For example, to italicize the entire document, set
            the Italic property of the font returned by this property to true.
            </p>
            </remarks>
        </member>
        <member name="P:Infragistics.Documents.Word.WordprocessingMLWriter.WriterState">
            <summary>
            Returns a bitflag value which describes the current state of the writer.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.TextRun">
            <summary>
            Class which pairs a string value with a
            <see cref="T:Infragistics.Documents.Word.Font">Font</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.TextRun.Create(Infragistics.Documents.Word.WordDocumentWriter,System.String,Infragistics.Documents.Word.Font)">
            <summary>
            Returns a new instance which is associated with the specified
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </summary>
            <param name="writer">
            The associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            instance.
            </param>
            <param name="text">
            The text displayed for the hyperlink.
            </param>
            <param name="font">
            A previously created
            <see cref="T:Infragistics.Documents.Word.Font">Font</see>
            instance which determines the font attributes for the text run.
            Null can be specified, in which case the text run inherits the font
            attributes as defined at the document level.
            </param>
            <returns>
            A new
            <see cref="T:Infragistics.Documents.Word.PictureOutlineProperties">PictureOutlineProperties</see>
            instance.
            </returns>
        </member>
        <member name="M:Infragistics.Documents.Word.TextRun.Reset(System.String)">
            <summary>
            Restores all properties of this instance to their respective defaults.
            </summary>
            <param name="text">
            The new value for the
            <see cref="P:Infragistics.Documents.Word.TextRun.Text">Text</see>
            property.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.TextRun.ToString">
            <summary>
            Returns the string representation of this object.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TextRun.Text">
            <summary>
            Returns or sets the string displayed by this run.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TextRun.Font">
            <summary>
            Returns or sets the font which defines the formatting for this run.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TextRun.CheckSpellingAndGrammar">
            <summary>
            Retuns or sets a boolean value indicating whether the contents
            of this run are checked for spelling and grammar.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TextRun.NewLineType">
            <summary>
            Returns or sets a value which determines the method used to
            represent a newline in the generated output.
            </summary>
            <seealso cref="P:Infragistics.Documents.Word.WordDocumentWriter.NewLineType">NewLineType (WordDocumentWriter class)</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.WriterStateVerification.#ctor(System.Boolean)">
            <summary>
            Creates an instance of the class.
            </summary>
            <param name="bypassDocumentOpenVerification">
            Unless you directly call VerifyDocumentIsOpen it will not
            be called when you cal things like VerifyParagraphIsOpen
            </param>
        </member>
        <member name="P:Infragistics.Documents.Word.WriterStateVerification.State">
            <summary>
            Returns a bitflag value which describes the current state of the writer.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.SectionHeaderFooterWriterSet">
            <summary>
            Class which holds one or more
            <see cref="T:Infragistics.Documents.Word.WordHeaderFooterWriter">WordHeaderFooterWriter</see>
            instances for the purpose of writing content to the headers and footers in a
            document section.
            </summary>
            <seealso cref="T:Infragistics.Documents.Word.WordHeaderFooterWriter">WordHeaderFooterWriter class</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.SectionHeaderFooterWriterSet.ToString">
            <summary>
            Returns the string representation of this instance.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.SectionHeaderFooterWriterSet.FooterWriterAllPages">
            <summary>
            Returns a
            <see cref="T:Infragistics.Documents.Word.WordHeaderFooterWriter">WordHeaderFooterWriter</see>
            derived instance with which content can be written to the footer of a document section.
            </summary>
            <remarks>
            <p class="body">
            If the 'FooterAllPages' bit was set on the 'sectionParts' parameter when the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddSectionHeaderFooter(Infragistics.Documents.Word.SectionHeaderFooterParts,Infragistics.Documents.Word.SectionProperties)">AddSectionHeaderFooter</see>
            was called, this property returns a non-null value, on which content-creation
            methods such as 'StartParagraph' and 'AddTextRun' can be called.
            </p>
            <p class="body">
            If the 'FooterAllPages' bit was not set, this property returns null.
            </p>
            </remarks>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddSectionHeaderFooter(Infragistics.Documents.Word.SectionHeaderFooterParts,Infragistics.Documents.Word.SectionProperties)">AddSectionHeaderFooter method (WordDocumentWriter class)</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.SectionHeaderFooterWriterSet.HeaderWriterAllPages">
            <summary>
            Returns a
            <see cref="T:Infragistics.Documents.Word.WordHeaderFooterWriter">WordHeaderFooterWriter</see>
            derived instance with which content can be written to the header of a document section.
            </summary>
            <remarks>
            <p class="body">
            If the 'HeaderAllPages' bit was set on the 'sectionParts' parameter when the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddSectionHeaderFooter(Infragistics.Documents.Word.SectionHeaderFooterParts,Infragistics.Documents.Word.SectionProperties)">AddSectionHeaderFooter</see>
            was called, this property returns a non-null value, on which content-creation
            methods such as 'StartParagraph' and 'AddTextRun' can be called.
            </p>
            <p class="body">
            If the 'HeaderAllPages' bit was not set, this property returns null.
            </p>
            </remarks>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddSectionHeaderFooter(Infragistics.Documents.Word.SectionHeaderFooterParts,Infragistics.Documents.Word.SectionProperties)">AddSectionHeaderFooter method (WordDocumentWriter class)</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.SectionHeaderFooterWriterSet.FooterWriterFirstPageOnly">
            <summary>
            Returns a
            <see cref="T:Infragistics.Documents.Word.WordHeaderFooterWriter">WordHeaderFooterWriter</see>
            derived instance with which content can be written to the footer for the first page of a
            document section.
            </summary>
            <remarks>
            <p class="body">
            If the 'FooterFirst' bit was set on the 'sectionParts' parameter when the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddSectionHeaderFooter(Infragistics.Documents.Word.SectionHeaderFooterParts,Infragistics.Documents.Word.SectionProperties)">AddSectionHeaderFooter</see>
            was called, this property returns a non-null value, on which content-creation
            methods such as 'StartParagraph' and 'AddTextRun' can be called.
            </p>
            <p class="body">
            If the 'FooterFirst' bit was not set, this property returns null.
            </p>
            </remarks>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddSectionHeaderFooter(Infragistics.Documents.Word.SectionHeaderFooterParts,Infragistics.Documents.Word.SectionProperties)">AddSectionHeaderFooter method (WordDocumentWriter class)</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.SectionHeaderFooterWriterSet.HeaderWriterFirstPageOnly">
            <summary>
            Returns a
            <see cref="T:Infragistics.Documents.Word.WordHeaderFooterWriter">WordHeaderFooterWriter</see>
            derived instance with which content can be written to the header for the first page of a
            document section.
            </summary>
            <remarks>
            <p class="body">
            If the 'HeaderFirst' bit was set on the 'sectionParts' parameter when the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddSectionHeaderFooter(Infragistics.Documents.Word.SectionHeaderFooterParts,Infragistics.Documents.Word.SectionProperties)">AddSectionHeaderFooter</see>
            was called, this property returns a non-null value, on which content-creation
            methods such as 'StartParagraph' and 'AddTextRun' can be called.
            </p>
            <p class="body">
            If the 'HeaderFirst' bit was not set, this property returns null.
            </p>
            </remarks>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddSectionHeaderFooter(Infragistics.Documents.Word.SectionHeaderFooterParts,Infragistics.Documents.Word.SectionProperties)">AddSectionHeaderFooter method (WordDocumentWriter class)</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.SectionHeaderFooterWriterSet.Parts">
            <summary>
            Returns a
            <see cref="T:Infragistics.Documents.Word.SectionHeaderFooterParts">SectionHeaderFooterParts</see>
            value to describe which of the header and footer parts are created by this class.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.WordHeaderFooterWriter">
            <summary>
            Writes content to a header or footer within a section of the document.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddEmptyParagraph">
            <summary>
            Adds a paragraph with no content.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.StartParagraph">
            <summary>
            Starts a new paragraph in the document with the default formatting.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.StartParagraph(Infragistics.Documents.Word.ParagraphProperties)">
            <summary>
            Starts a new paragraph in the document.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.EndParagraph">
            <summary>
            Closes a previously created paragraph.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddNewLine">
            <summary>
            Adds a text run consisting of the newline character to the current paragraph.
            </summary>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddNewLine">WordDocumentWriter.AddNewLine</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddNewLine(Infragistics.Documents.Word.NewLineType)">
            <summary>
            Adds a text run consisting of the newline character to the current paragraph.
            </summary>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddNewLine(Infragistics.Documents.Word.NewLineType)">WordDocumentWriter.AddNewLine</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddTextRun(System.String)">
            <summary>
            Adds a text run to the current paragraph.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddTextRun(System.String,Infragistics.Documents.Word.Font)">
            <summary>
            Adds a text run to the current paragraph.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddTextRun(System.String,Infragistics.Documents.Word.Font,System.Nullable{System.Boolean})">
            <summary>
            Adds a text run to the current paragraph.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddTextRun(Infragistics.Documents.Word.TextRun)">
            <summary>
            Adds a text run to the current paragraph.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddHyperlink(System.String,System.String)">
            <summary>
            Adds a textual hyperlink to the current paragraph.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddHyperlink(System.String,System.String,Infragistics.Documents.Word.Font)">
            <summary>
            Adds a textual hyperlink to the current paragraph.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddHyperlink(System.String,System.String,System.String)">
            <summary>
            Adds a textual hyperlink to the current paragraph.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddHyperlink(System.String,System.Collections.Generic.IList{Infragistics.Documents.Word.TextRun},System.String)">
            <summary>
            Adds a textual hyperlink to the current paragraph.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddHyperlink(Infragistics.Documents.Word.TextHyperlink)">
            <summary>
            Adds a textual hyperlink to the current paragraph.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddInlinePicture(System.Drawing.Image)">
            <summary>
            Adds an inline picture to the current paragraph.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddInlinePicture(System.Drawing.Image,System.Nullable{System.Drawing.SizeF})">
            <summary>
            Adds an inline picture to the current paragraph.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddInlinePicture(Infragistics.Documents.Word.InlinePicture)">
            <summary>
            Adds an inline picture to the current paragraph.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddAnchoredPicture(System.Drawing.Image)">
            <summary>
            Adds an anchored picture to the current paragraph.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddAnchoredPicture(Infragistics.Documents.Word.AnchoredPicture)">
            <summary>
            Adds an anchored picture with the specified size to the current paragraph.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.StartTable(System.Int32)">
            <summary>
            Starts a new table in the document with the specified number of columns.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.StartTable(System.Int32,Infragistics.Documents.Word.TableProperties)">
            <summary>
            Starts a new table in the document with the specified number of columns.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.StartTable(System.Collections.Generic.IList{System.Single},Infragistics.Documents.Word.TableProperties)">
            <summary>
            Starts a new table in the document with the number of columns
            equal to the number of elements in the specified <paramref name="columnWidths"/>
            list, and with the width of each column defined by the corresponding value in the list.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.StartTableRow">
            <summary>
            Starts a new row in the current table with the default height.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.StartTableRow(Infragistics.Documents.Word.TableRowProperties)">
            <summary>
            Starts a new row in the current table.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.EndTableRow">
            <summary>
            Closes the current table row.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.StartTableCell(Infragistics.Documents.Word.TableCellProperties)">
            <summary>
            Starts a new cell in the current row.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.EndTableCell">
            <summary>
            Closes a previously opened cell.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddTableCell(System.String)">
            <summary>
            Adds a cell to the current row, with one paragraph containing
            a simple text run with the specified <paramref name="text"/>.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddTableCell(System.String,Infragistics.Documents.Word.TableCellProperties)">
            <summary>
            Adds a cell to the current row, with one paragraph containing
            a simple text run with the specified <paramref name="text"/>,
            optionally with the specified properties.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.EndTable">
            <summary>
            Closes a previously opened table.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.Open">
            <summary>
            Opens the writer.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.Close">
            <summary>
            Closes and flushes the writer.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddPageNumberField(Infragistics.Documents.Word.PageNumberFieldFormat)">
            <summary>
            Adds a page numbering field to the current paragraph.
            </summary>
            <param name="format">
            A
            <see cref="T:Infragistics.Documents.Word.PageNumberFieldFormat">PageNumberFieldFormat</see>
            value which defines the format for the page number.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddPageNumberField(Infragistics.Documents.Word.PageNumberFieldFormat,Infragistics.Documents.Word.Font)">
            <summary>
            Adds a page numbering field to the current paragraph.
            </summary>
            <param name="format">
            A
            <see cref="T:Infragistics.Documents.Word.PageNumberFieldFormat">PageNumberFieldFormat</see>
            value which defines the format for the page number.
            </param>
            <param name="font">
            A
            <see cref="T:Infragistics.Documents.Word.Font">Font</see>
            instance which defines the formatting attributes for the page number.
            </param>
            <remarks>
            <p class="body">
            This method can only be called when a paragraph is currently open.
            A page number field is similar to a text run; it can be embedded
            within the paragraph adjacent to any other kind of content such
            as text, images, or hyperlinks.
            </p>
            <p class="body">
            A page number field can be added to either a header or footer.
            </p>
            <p class="body">
            The page number for the first page in a section can be explicitly set using the
            <see cref="P:Infragistics.Documents.Word.SectionProperties.StartingPageNumber">StartingPageNumber</see>
            property. When this property is not explicitly set, page numbers for new sections
            continue sequentially from the last page of the previous section.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddPageNumberField(Infragistics.Documents.Word.PageNumberField)">
            <summary>
            Adds a page numbering field to the current paragraph.
            </summary>
            <param name="pageNumberField">
            A
            <see cref="T:Infragistics.Documents.Word.PageNumberField">PageNumberField</see>
            value which defines the properties of the page number.
            </param>
            <remarks>
            <p class="body">
            This method can only be called when a paragraph is currently open.
            A page number field is similar to a text run; it can be embedded
            within the paragraph adjacent to any other kind of content such
            as text, images, or hyperlinks.
            </p>
            <p class="body">
            A page number field can be added to either a header or footer.
            </p>
            <p class="body">
            The page number for the first page in a section can be explicitly set using the
            <see cref="P:Infragistics.Documents.Word.SectionProperties.StartingPageNumber">StartingPageNumber</see>
            property. When this property is not explicitly set, page numbers for new sections
            continue sequentially from the last page of the previous section.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddAnchoredShape(Infragistics.Documents.Word.ShapeType)">
            <summary>
            Adds an anchored shape with the specified size to the current paragraph.
            </summary>
            <param name="shapeType">
            A
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which defines the type of shape to add.
            </param>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddAnchoredShape(Infragistics.Documents.Word.ShapeType)">AddAnchoredShape (WordDocumentWriter class)</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddAnchoredShape(Infragistics.Documents.Word.AnchoredShape)">
            <summary>
            Adds an anchored shape with the specified size to the current paragraph.
            </summary>
            <param name="anchoredShape">
            The
            <see cref="T:Infragistics.Documents.Word.AnchoredShape">AnchoredShape</see>
            instance to be added to the paragraph.
            </param>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddAnchoredShape(Infragistics.Documents.Word.AnchoredShape)">AddAnchoredShape (WordDocumentWriter class)</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddInlineShape(Infragistics.Documents.Word.ShapeType)">
            <summary>
            Adds an inline
            <see cref="T:Infragistics.Documents.Word.VmlShape">shape</see>
            to the current paragraph, using Vector Markup Language (VML).
            </summary>
            <param name="shapeType">
            A
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which defines the type of shape to add.
            </param>
            <remarks>
            <p class="body">
            Before the AddInlineShape method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
            <seealso cref="T:Infragistics.Documents.Word.ShapeType">ShapeType enumeration</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddInlineShape(Infragistics.Documents.Word.ShapeType,System.Nullable{System.Drawing.Size})">
            <summary>
            Adds an inline
            <see cref="T:Infragistics.Documents.Word.VmlShape">shape</see>
            to the current paragraph, using Vector Markup Language (VML).
            </summary>
            <param name="shapeType">
            A
            <see cref="T:Infragistics.Documents.Word.ShapeType">ShapeType</see>
            constant which defines the type of shape to add.
            </param>
            <param name="size">If specified, the size at which the shape is rendered. If null, the shape is rendered at a size of one inch square..</param>
            <remarks>
            <p class="body">
            Before the AddInlineShape method can be called, the developer must begin a paragraph via the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartParagraph">StartParagraph</see>
            method, or an exception is thrown.
            </p>
            </remarks>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
            <seealso cref="T:Infragistics.Documents.Word.ShapeType">ShapeType enumeration</seealso>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddInlineShape(Infragistics.Documents.Word.VmlShape)">
            <summary>
            Adds an inline
            <see cref="T:Infragistics.Documents.Word.VmlShape">shape</see>
            to the current paragraph, using Vector Markup Language (VML).
            </summary>
            <param name="shape">
            The shape to add, such as a line, rectangle, ellipse, etc.
            </param>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddInlineShape(Infragistics.Documents.Word.InlineShape)">AddInlineShape (WordDocumentWriter class)</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddInlineShape(Infragistics.Documents.Word.InlineShape)">
            <summary>
            Adds an
            <see cref="T:Infragistics.Documents.Word.InlineShape">InlineShape</see>
            to the current paragraph, using Vector Markup Language (VML).
            </summary>
            <param name="inlineShape">
            The instance to add.
            </param>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddInlineShape(Infragistics.Documents.Word.InlineShape)">AddInlineShape (WordDocumentWriter class)</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="P:Infragistics.Documents.Word.WordHeaderFooterWriter.DocumentWriter">
            <summary>
            Returns a reference to the
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            associated with this instance.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordHeaderFooterWriter.IsHeader">
            <summary>
            Returns a boolean value indicating whether this instance represents a section header.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordHeaderFooterWriter.IsFooter">
            <summary>
            Returns a boolean value indicating whether this instance represents a section footer.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordHeaderFooterWriter.Type">
            <summary>
            Returns a value which describes whether the asssociated header/footer
            appears on all pages in the section, or only on the first page of the
            section.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter">
            <summary>
            Writes WordprocessingML content to a header or footer
            within a section of the document.
            </summary>
            <remarks>
            <p class="body">
            The methods exposed by this class are syntactically identical to the
            corresponding methods of the
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            class. This is because headers and footers can accommodate virtually all the same
            content that the main document part can accommodate; for example, paragraphs, text runs,
            hyperlinks, and tables are all valid content for a header or footer section.
            </p>
            <p class="body">
            At the time that the containing
            <see cref="T:Infragistics.Documents.Word.SectionHeaderFooterWriterSet">SectionHeaderFooterWriterSet</see>
            is returned from the
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddSectionHeaderFooter(Infragistics.Documents.Word.SectionHeaderFooterParts)">AddSectionHeaderFooter</see>
            method, the XML elements required to reference the header and footer parts have already been written
            to the content stream - this is a necessary consequence of a forward-only stream writer.
            These elements refer to the actual header/footer parts in the package; the content for these parts, however,
            is created via calls to the methods of this class.
            </p>
            <p class="body">
            This instance stays alive until it is explicitly discarded by the consumer,
            or until the associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            is closed. This means  that the developer can write content to the header/footer part
            at any time during the lifetime of the WordDocumentWriter, although doing so is not
            recommended as this increases the complexity of the resulting implementation.
            </p>
            <p class="body">
            Unlike the WordDocumentWriter, which requires a 'StartDocument' method to be called
            prior to calling content creation methods, all required prologues are automatically
            written to the content stream when the
            <see cref="M:Infragistics.Documents.Word.WordHeaderFooterWriter.StartParagraph">StartParagraph</see>
            or
            <see cref="M:Infragistics.Documents.Word.WordHeaderFooterWriter.StartTable(System.Int32)">StartTable</see>
            methods are called. Note that all content which appears within a header or footer must appear
            within one of these two types of content blocks.
            </p>
            <p class="body">
            Page numbers can be specified for a header or footer using the
            <see cref="M:Infragistics.Documents.Word.WordHeaderFooterWriter.AddPageNumberField(Infragistics.Documents.Word.PageNumberFieldFormat)">AddPageNumberField</see>
            method.
            </p>
            <p class="body">
            The
            <see cref="M:Infragistics.Documents.Word.WordHeaderFooterWriter.Close">Close</see>
            method must be called after all content has been written.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter.StartParagraph(Infragistics.Documents.Word.ParagraphProperties)">
            <summary>
            See
            <see cref="M:Infragistics.Documents.Word.WordprocessingMLWriter.StartParagraph(Infragistics.Documents.Word.ParagraphProperties)">WordProcessingMLWriter.StartParagraph</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter.EndParagraph">
            <summary>
            See
            <see cref="M:Infragistics.Documents.Word.WordprocessingMLWriter.EndParagraph">WordProcessingMLWriter.EndParagraph</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter.AddTextRun(Infragistics.Documents.Word.TextRun)">
            <summary>
            See
            <see cref="M:Infragistics.Documents.Word.WordprocessingMLWriter.AddTextRun(Infragistics.Documents.Word.TextRun)">WordProcessingMLWriter.AddTextRun</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter.AddHyperlink(Infragistics.Documents.Word.TextHyperlink)">
            <summary>
            See
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddHyperlink(Infragistics.Documents.Word.TextHyperlink)">WordProcessingMLWriter.AddHyperlink</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter.AddInlinePicture(Infragistics.Documents.Word.InlinePicture)">
            <summary>
            See
            <see cref="M:Infragistics.Documents.Word.WordprocessingMLWriter.AddInlinePicture(Infragistics.Documents.Word.InlinePicture)">WordProcessingMLWriter.AddInlinePicture</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter.AddAnchoredPicture(Infragistics.Documents.Word.AnchoredPicture)">
            <summary>
            See
            <see cref="M:Infragistics.Documents.Word.WordprocessingMLWriter.AddAnchoredPicture(Infragistics.Documents.Word.AnchoredPicture)">WordProcessingMLWriter.AddAnchoredPicture</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter.StartTable(System.Collections.Generic.IList{System.Single},Infragistics.Documents.Word.TableProperties)">
            <summary>
            See
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.StartTable(System.Int32)">WordProcessingMLWriter.StartTable</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter.StartTableRow(Infragistics.Documents.Word.TableRowProperties)">
            <summary>
            See
            <see cref="M:Infragistics.Documents.Word.WordprocessingMLWriter.StartTableRow(Infragistics.Documents.Word.TableRowProperties)">WordProcessingMLWriter.StartTableRow</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter.EndTableRow">
            <summary>
            See
            <see cref="M:Infragistics.Documents.Word.WordprocessingMLWriter.EndTableRow">WordProcessingMLWriter.EndTableRow</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter.StartTableCell(Infragistics.Documents.Word.TableCellProperties)">
            <summary>
            See
            <see cref="M:Infragistics.Documents.Word.WordprocessingMLWriter.StartTableCell(Infragistics.Documents.Word.TableCellProperties)">WordProcessingMLWriter.StartTableCell</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter.EndTableCell">
            <summary>
            See
            <see cref="M:Infragistics.Documents.Word.WordprocessingMLWriter.EndTableCell">WordProcessingMLWriter.EndTableCell</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter.AddTableCell(System.String,Infragistics.Documents.Word.TableCellProperties)">
            <summary>
            See
            <see cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddTableCell(System.String)">WordProcessingMLWriter.AddTableCell</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter.EndTable">
            <summary>
            See
            <see cref="M:Infragistics.Documents.Word.WordprocessingMLWriter.EndTable">WordProcessingMLWriter.EndTable</see>.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter.Open">
            <summary>
            Opens the writer.
            </summary>
            <remarks>
            <p class="body">
            This method writes the root element to the package part associated
            with the header/footer, but writes no content.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter.Close">
            <summary>
            Closes and flushes the writer.
            </summary>
            <remarks>
            <p class="body">
            The Close method closes the underlying XML writer, which finalizes
            the content and commits it to the associated package part.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter.AddPageNumberField(Infragistics.Documents.Word.PageNumberField)">
            <summary>
            Adds a page numbering field to the current paragraph.
            </summary>
            <param name="pageNumberField">
            A
            <see cref="T:Infragistics.Documents.Word.PageNumberField">PageNumberField</see>
            value which defines the properties of the page number.
            </param>
            <remarks>
            <p class="body">
            This method can only be called when a paragraph is currently open.
            A page number field is similar to a text run; it can be embedded
            within the paragraph adjacent to any other kind of content such
            as text, images, or hyperlinks.
            </p>
            <p class="body">
            A page number field can be added to either a header or footer.
            </p>
            <p class="body">
            The page number for the first page in a section can be explicitly set using the
            <see cref="P:Infragistics.Documents.Word.SectionProperties.StartingPageNumber">StartingPageNumber</see>
            property. When this property is not explicitly set, page numbers for new sections
            continue sequentially from the last page of the previous section.
            </p>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter.AddAnchoredShape(Infragistics.Documents.Word.AnchoredShape)">
            <summary>
            Adds an anchored shape with the specified size to the current paragraph.
            </summary>
            <param name="anchoredShape">
            The
            <see cref="T:Infragistics.Documents.Word.AnchoredShape">AnchoredShape</see>
            instance to be added to the paragraph.
            </param>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddAnchoredShape(Infragistics.Documents.Word.AnchoredShape)">AddAnchoredShape (WordDocumentWriter class)</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="M:Infragistics.Documents.Word.WordprocessingMLHeaderFooterWriter.AddInlineShape(Infragistics.Documents.Word.InlineShape)">
            <summary>
            Adds an
            <see cref="T:Infragistics.Documents.Word.InlineShape">InlineShape</see>
            to the current paragraph, using Vector Markup Language (VML).
            </summary>
            <param name="inlineShape">
            The instance to add.
            </param>
            <seealso cref="M:Infragistics.Documents.Word.WordDocumentWriter.AddInlineShape(Infragistics.Documents.Word.InlineShape)">AddInlineShape (WordDocumentWriter class)</seealso>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterException">Thrown if no document or paragraph is currently open.</exception>
            <exception cref="T:Infragistics.Documents.Word.WordDocumentWriterXmlWriterException">Thrown if the XmlWriter used to write content to the stream throws an exception.</exception>
        </member>
        <member name="T:Infragistics.Documents.Word.Hyperlink">
            <summary>
            Encapsulates the address and tooltip text for a hyperlink.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.Hyperlink.#ctor(System.String)">
            <summary>
            Creates a new instance of the
            <see cref="T:Infragistics.Documents.Word.Hyperlink">Hyperlink</see>
            class.
            </summary>
            <param name="address">The address of the hyperlink.</param>
        </member>
        <member name="M:Infragistics.Documents.Word.Hyperlink.Reset(System.String)">
            <summary>
            Restores all property values to their respective defaults.
            </summary>
            <param name="address">
            The new value for the
            <see cref="P:Infragistics.Documents.Word.Hyperlink.Address">Address</see>
            property.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.Hyperlink.ToString">
            <summary>
            Returns the string representation of this object.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.Hyperlink.Address">
            <summary>
            Returns or sets the address of the hyperlink.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.Hyperlink.ToolTipText">
            <summary>
            Returns or sets the text of the tooltip that is displayed for the hyperlink.
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Word.TextHyperlink">
            <summary>
            Encapsulates a textual hyperlink.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.TextHyperlink.#ctor(System.String)">
            <summary>
            Creates a new instance of the
            <see cref="T:Infragistics.Documents.Word.TextHyperlink">TextHyperlink</see>
            class.
            </summary>
            <param name="address">The address of the hyperlink.</param>
        </member>
        <member name="M:Infragistics.Documents.Word.TextHyperlink.#ctor(System.String,System.String)">
            <summary>
            Creates a new instance of the
            <see cref="T:Infragistics.Documents.Word.TextHyperlink">TextHyperlink</see>
            class.
            </summary>
            <param name="address">The address of the hyperlink.</param>
            <param name="text">The text displayed for the hyperlink.</param>
        </member>
        <member name="M:Infragistics.Documents.Word.TextHyperlink.Create(Infragistics.Documents.Word.WordDocumentWriter,System.String,System.String)">
            <summary>
            Returns a new instance which is associated with the specified
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </summary>
            <param name="writer">
            The associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>
            instance.
            </param>
            <param name="address">
            The address of the hyperlink.
            </param>
            <param name="text">
            The text displayed for the hyperlink.
            </param>
            <returns>
            A new
            <see cref="T:Infragistics.Documents.Word.PictureOutlineProperties">PictureOutlineProperties</see>
            instance.
            </returns>
        </member>
        <member name="M:Infragistics.Documents.Word.TextHyperlink.Reset(System.String)">
            <summary>
            Restores all property values to their respective defaults.
            </summary>
            <param name="address">
            The new value for the
            <see cref="P:Infragistics.Documents.Word.Hyperlink.Address">Address</see>
            property.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.TextHyperlink.ToString">
            <summary>
            Returns the string representation of this object.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.TextHyperlink.Text">
            <summary>
            Returns or sets the text that is displayed for the hyperlink.
            </summary>
            <remarks>
            <p class="body">
            In the case where the 
            <see cref="P:Infragistics.Documents.Word.TextHyperlink.TextRuns">TextRuns</see>
            property is set to a non-null value, this property returns the text of the
            first element in the list.
            </p>
            <p class="body">
            Use the
            <see cref="P:Infragistics.Documents.Word.TextHyperlink.TextRuns">TextRuns</see>
            property when the text for the hyperlink must contain mixed formatting attributes.
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.TextHyperlink.TextRuns">TextRuns</seealso>
        </member>
        <member name="P:Infragistics.Documents.Word.TextHyperlink.TextRuns">
            <summary>
            Returns or sets a list of
            <see cref="T:Infragistics.Documents.Word.TextRun">TextRun</see>
            instances which contain the runs of text that are displayed for this hyperlink.
            </summary>
            <remarks>
            <p class="body">
            The TextRuns property can be used to create a hyperlink with mixed
            formatting attributes. Each element in the list contains a fragment
            of the text to be displayed along with the font which defines the
            formatting attributes for that fragment.
            </p>
            <p class="body">
            The
            <see cref="P:Infragistics.Documents.Word.TextHyperlink.Text">Text</see>
            property exists for the developer's convenience since in the majority
            of cases a hyperlink does not contain mixed formatting attributes.
            </p>
            </remarks>
            <seealso cref="P:Infragistics.Documents.Word.TextHyperlink.Text">Text</seealso>
        </member>
        <member name="T:Infragistics.Documents.Word.PageNumberField">
            <summary>
            Encapsulates a page number field within a paragraph.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.PageNumberField.Create(Infragistics.Documents.Word.WordDocumentWriter,Infragistics.Documents.Word.PageNumberFieldFormat)">
            <summary>
            Creates a new instance of the class.
            </summary>
            <param name="format">
            A
            <see cref="T:Infragistics.Documents.Word.PageNumberFieldFormat">PageNumberFieldFormat</see>.
            constant which defines the format for the page number field.
            </param>
            <param name="writer">
            The associated
            <see cref="T:Infragistics.Documents.Word.WordDocumentWriter">WordDocumentWriter</see>.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.PageNumberField.Reset(Infragistics.Documents.Word.PageNumberFieldFormat)">
            <summary>
            Restores all property values to their respective defaults.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.PageNumberField.Format">
            <summary>
            Returns or sets a value which determines the type
            of page number field.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.PageNumberField.Font">
            <summary>
            Returns or sets the font which defines the formatting for this field.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordStylesPartExporter.ContentTypeValue">
            <summary>'vnd-openxmlformats.officedocument.wordprocessingml.styles+xml'</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordStylesPartExporter.DefaultPartName">
            <summary>'/word/styles.xml'</summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordStylesPartExporter.RelationshipTypeValue">
            <summary>'http://schemas.openxmlformats.org/officeDocument/2006/relationships/styles'</summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordStylesPartExporter.GetElementName(System.Enum,System.String@,System.String@,System.String@)">
            <summary>
            Returns the fully qualified name of the XMl element
            corresponding to the specified <paramref name="element"/>,
            which is implied to be of type StylesElementType.
            The method knows by the enum constant which namespace it
            belongs to, and the local name of the element.
            </summary>
            <returns>The fully qualified name of the XML element.</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.WordStylesPartExporter.GetElementNameHelper(System.Enum,System.String@,System.String@,System.String@)">
            <summary>
            Returns the fully qualified name of the XMl element
            corresponding to the specified <paramref name="element"/>,
            which is implied to be of type StylesElementType.
            The method knows by the enum constant which namespace it
            belongs to, and the local name of the element.
            </summary>
            <returns>The fully qualified name of the XML element.</returns>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.EMUsPerPoint">
            <summary>
            Returns the number of English Metric Units (EMU) in one desktop publishing point (12,700).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.PointsPerInch">
            <summary>
            Returns the number of desktop publishing points (DTPs) in one inch (72).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.TwipsPerPoint">
            <summary>
            Returns the number of TWIPs (twentieths of a point) in one desktop publishing point (20).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.TwipsPerInch">
            <summary>
            Returns the number of TWIPs (twentieths of a point) in one inch (72 x 20 = 1440).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.CentimetersPerInch">
            <summary>
            Returns the number of centimeters in one inch (2.54).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.TwipsPerCentimeter">
            <summary>
            Returns the number of TWIPs (twentieths of a point) in one centimeter (1440 / 2.54 = ~567).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.Precision">
            <summary>
            Returns the number of decimal places to which converted floating-point values are rounded (2).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.DefaultUnitOfMeasurement">
            <summary>
            Returns the default unit of measurement (Point)
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.DefaultLineSpacingRule">
            <summary>
            Returns the default line spacing rule (auto)
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.DefaultRowHeightRule">
            <summary>
            Returns the default row height rule (auto)
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.DefaultParagraphAlignment">
            <summary>
            Returns the default ParagraphAlignment (Left)
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.DefaultTableColumnWidthInTwips">
            <summary>
            Returns the default width for a table column in twips (1440 = 1")
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.DefaultTableBorderStyle">
            <summary>
            Returns the default border style for rows and cells (single)
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.DefaultPictureOutlineStyle">
            <summary>
            Returns the default outline style for picture outlines (none)
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.DefaultPictureOutlineCornerStyle">
            <summary>
            Returns the default corner style for picture outlines (round)
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.DefaultTableCellTextDirection">
            <summary>
            Returns the default text direction for cells (normal)
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.MaxPageWidthInInches">
            <summary>
            Returns the maximum page width in inches (22).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.MaxPageWidthInTwips">
            <summary>
            Returns the maximum page width (22") in twentieths of a point.
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.DefaultNewLineType">
            <summary>
            Returns the default value of the NewLineType property (LineBreak)
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.MaxTableColumns">
            <summary>
            Returns the maximum number of columns that can appear in a table (63)
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.DefaultPageNumberFieldFormat">
            <summary>
            Returns the default value for a page number field's type (Decimal).
            </summary>
        </member>
        <member name="F:Infragistics.Documents.Word.WordUtilities.DefaultImageResolution">
            <summary>
            Returns the default resolution for images, in dots per inch (96 x 96)
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordUtilities.GetXmlDeclaration(System.String,System.String,System.String)">
            <summary>
            Duplicated:
            Infragistics.Documents.Excel.Utilities.GetXmlDeclaration
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordUtilities.StringPropertyGetHelper(System.String)">
            <summary>
            Returns the specified <paramref name="value"/> if it is not null,
            otherwise returns string.Empty.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordUtilities.Convert(System.Single,Infragistics.Documents.Word.UnitOfMeasurement,Infragistics.Documents.Word.UnitOfMeasurement)">
            <summary>
            Converts the specified <paramref name="value"/> from the UnitOfMeasurement
            as specified by <paramref name="from"/> to the unit as specified by <paramref name="to"/>.
            </summary>
            <returns>The converted value, expressed as specified by <paramref name="to"/>.</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.WordUtilities.ConvertToTwips(Infragistics.Documents.Word.UnitOfMeasurement,System.Single)">
            <summary>
            Converts the specified <paramref name="value"/> to twentieths of a point,
            using the specified <paramref name="unit"/> of measure.
            </summary>
            <returns>The converted value, expressed in TWIPs</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.WordUtilities.ConvertFromTwips(Infragistics.Documents.Word.UnitOfMeasurement,System.Single)">
            <summary>
            Converts the specified <paramref name="value"/> from twentieths of a point,
            using the specified <paramref name="unit"/> of measure.
            </summary>
            <returns>The converted value, expressed in units as defined by the value of the <paramref name="unit"/> property.</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.WordUtilities.ConvertSizeToTwips(Infragistics.Documents.Word.UnitOfMeasurement,System.Drawing.SizeF)">
            <summary>
            Converts the specified <paramref name="value"/> to twentieths of a point,
            using the specified <paramref name="unit"/> of measure.
            </summary>
            <returns>The converted value, expressed in TWIPs</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.WordUtilities.ConvertSizeFromTwips(Infragistics.Documents.Word.UnitOfMeasurement,System.Drawing.SizeF)">
            <summary>
            Converts the specified <paramref name="value"/> from twentieths of a point,
            using the specified <paramref name="unit"/> of measure.
            </summary>
            <returns>The converted value, expressed in units as defined by the value of the <paramref name="unit"/> property.</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.WordUtilities.ConvertPaddingToTwips(Infragistics.Documents.Word.UnitOfMeasurement,Infragistics.Documents.Word.Padding)">
            <summary>
            Converts the specified <paramref name="value"/> to twentieths of a point,
            using the specified <paramref name="unit"/> of measure.
            </summary>
            <returns>The converted value, expressed in TWIPs</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.WordUtilities.ConvertPaddingFromTwips(Infragistics.Documents.Word.UnitOfMeasurement,Infragistics.Documents.Word.Padding)">
            <summary>
            Converts the specified <paramref name="value"/> from twentieths of a point,
            using the specified <paramref name="unit"/> of measure.
            </summary>
            <returns>The converted value, expressed in units as defined by the value of the <paramref name="unit"/> property.</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.WordUtilities.SplitString(System.Int32,System.String)">
            <summary>
            Splits the specified string at the specified index and returns
            the two resulting substrings. Throws an IndexOutOfRangeException
            if the specified index is greater than text.Length. Always returns
            a string array with two non-null elements otherwise.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordUtilities.Combine(System.String,System.String,System.Int32)">
            <summary>
            Combines the two strings by inserting the specified <paramref name="source"/>
            string into the specified <paramref name="destination"/> string at the specified
            <paramref name="index"/>.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordUtilities.GetResolution(System.Drawing.Image)">
            <summary>
            Returns the graphical resolution for the specified image,
            expressed in dots per inch.
            </summary>
            <param name="image">The Image for which to return the resolution.</param>
            <returns>A SizeF struct containing the horizontal and vertical components of the resolution.</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.WordUtilities.GetSize(System.Drawing.Image,Infragistics.Documents.Word.UnitOfMeasurement)">
            <summary>
            Returns the size of the specified image, expressed in the specified unit of measure.
            </summary>
            <param name="image">The Image for which to return the resolution.</param>
            <param name="unit">The unit of measurement to use.</param>
            <returns>A SizeF struct containing the horizontal and vertical components of the resolution.</returns>
        </member>
        <member name="M:Infragistics.Documents.Word.WordUtilities.ToHexBinary3(System.Drawing.Color)">
            <summary>
            Returns a string that is compatible with the ST_HexBinary3
            data type from the specified color value.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Word.WordUtilities.FromPixels(System.Int32,System.Single,Infragistics.Documents.Word.UnitOfMeasurement)">
            <summary>
            Converts the specified <paramref name="value"/> into the specified unit of measure.
            </summary>
            <param name="value">A value which represents a number of pixels.</param>
            <param name="dpi">The resolution, expressed in dots per inch.</param>
            <param name="unit">
            A
            <see cref="T:Infragistics.Documents.Word.UnitOfMeasurement">UnitOfMeasurement</see>
            constant which defines the units into which the value is to be converted.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.WordUtilities.ToPixels(System.Single,System.Single,Infragistics.Documents.Word.UnitOfMeasurement)">
            <summary>
            Converts the specified <paramref name="value"/> into a pixel
            value at the specified resolution.
            </summary>
            <param name="value">A value which represents a linear graphical quantity.</param>
            <param name="dpi">The resolution, expressed in dots per inch.</param>
            <param name="unit">
            A
            <see cref="T:Infragistics.Documents.Word.UnitOfMeasurement">UnitOfMeasurement</see>
            constant which defines the unit of measure in which the <paramref name="value"/>
            is expressed.
            </param>
        </member>
        <member name="M:Infragistics.Documents.Word.WordUtilities.UnitToString(Infragistics.Documents.Word.UnitOfMeasurement)">
            <summary>
            Returns a human readable string for the specified unit.
            </summary>
        </member>
        <member name="P:Infragistics.Documents.Word.WordUtilities.ColorEmpty">
            <summary>
            Replace Color.Empty
            </summary>
        </member>
        <member name="T:Infragistics.Documents.Reports.DocumentsResourceCustomizer">
            <summary>
            Class used to provide the ability to customize resource strings.
            </summary>
            <remarks>
            </remarks>
        </member>
        <member name="M:Infragistics.Documents.Reports.DocumentsResourceCustomizer.#ctor">
            <summary>
            Creates a new instance of the DocumentsResourceCustomizer class.
            </summary>
        </member>
        <member name="M:Infragistics.Documents.Reports.DocumentsResourceCustomizer.GetCustomizedString(System.String)">
            <summary>
            Gets the customized string identified by the specified string resource name.
            </summary>
            <param name="name">Name of the string resource that was customized.</param>
            <returns>The customized string or null if the resource wasn't customized.</returns>
            <seealso cref="M:Infragistics.Documents.Reports.DocumentsResourceCustomizer.ResetAllCustomizedStrings"/>
            <seealso cref="M:Infragistics.Documents.Reports.DocumentsResourceCustomizer.ResetCustomizedString(System.String)"/>
            <seealso cref="M:Infragistics.Documents.Reports.DocumentsResourceCustomizer.SetCustomizedString(System.String,System.String)"/>
        </member>
        <member name="M:Infragistics.Documents.Reports.DocumentsResourceCustomizer.ResetAllCustomizedStrings">
            <summary>
            Clears all strings customized by calls to <see cref="M:Infragistics.Documents.Reports.DocumentsResourceCustomizer.SetCustomizedString(System.String,System.String)"/> method.
            </summary>
            <seealso cref="M:Infragistics.Documents.Reports.DocumentsResourceCustomizer.SetCustomizedString(System.String,System.String)"/>
            <seealso cref="M:Infragistics.Documents.Reports.DocumentsResourceCustomizer.ResetCustomizedString(System.String)"/>
        </member>
        <member name="M:Infragistics.Documents.Reports.DocumentsResourceCustomizer.ResetCustomizedString(System.String)">
            <summary>
            Resets a customized string identified by the specified string resource name so that it will load from the resource file.
            </summary>
            <param name="name">Name of the string resource to customize.</param>
            <seealso cref="M:Infragistics.Documents.Reports.DocumentsResourceCustomizer.SetCustomizedString(System.String,System.String)"/>
        </member>
        <member name="M:Infragistics.Documents.Reports.DocumentsResourceCustomizer.SetCustomizedString(System.String,System.String)">
            <summary>
            Sets a customized string identified by the specified string resource name.
            </summary>
            <param name="name">Name of the string resource to customize.</param>
            <param name="customizedText">The customized string. If null this has the same effect as calling <see cref="M:Infragistics.Documents.Reports.DocumentsResourceCustomizer.ResetCustomizedString(System.String)"/></param>
            <seealso cref="M:Infragistics.Documents.Reports.DocumentsResourceCustomizer.ResetAllCustomizedStrings"/>
            <seealso cref="M:Infragistics.Documents.Reports.DocumentsResourceCustomizer.ResetCustomizedString(System.String)"/>
        </member>
        <member name="T:Infragistics.Documents.Reports.Resources">
            <summary>
            Exposes a <see cref="T:Infragistics.Documents.Reports.DocumentsResourceCustomizer"/> instance for this assembly. 
            </summary>
            <seealso cref="P:Infragistics.Documents.Reports.Resources.Customizer"/> 
            <seealso cref="T:Infragistics.Documents.Reports.DocumentsResourceCustomizer"/> 
        </member>
        <member name="M:Infragistics.Documents.Reports.Resources.GetString(System.String,System.Object[])">
            <summary>
            Returns the resource string using the specified name and default culture.
            </summary>
            <param name="name">Name of the string resource to return.</param>
            <param name="args">Arguments supplied to the string.Format method when formatting the string.</param>
        </member>
        <member name="M:Infragistics.Documents.Reports.Resources.GetString(System.String)">
            <summary>
            Returns the resource string using the specified resource name and default culture. The string is then formatted using the arguments specified.
            </summary>
            <param name="name">Name of the string resource to return.</param>
        </member>
        <member name="M:Infragistics.Documents.Reports.Resources.GetObject(System.String)">
            <summary>
            Returns the resource object using the specified name.
            </summary>
            <param name="name">Name of the resource item</param>
            <returns>An object containing the specified resource</returns>
        </member>
        <member name="P:Infragistics.Documents.Reports.Resources.Customizer">
            <summary>
            Returns the <see cref="T:Infragistics.Documents.Reports.DocumentsResourceCustomizer"/> for this assembly.
            </summary>
            <seealso cref="T:Infragistics.Documents.Reports.DocumentsResourceCustomizer"/> 
        </member>
        <member name="T:Infragistics.InfragisticsFeatureAttribute">
            <summary>
            Indicates an exposed type or member which was added as part of a new feature.
            </summary>
        </member>
        <member name="M:Infragistics.InfragisticsFeatureAttribute.#ctor">
            <summary>
            Creates a new <see cref="T:Infragistics.InfragisticsFeatureAttribute"/> instance.
            </summary>
        </member>
        <member name="P:Infragistics.InfragisticsFeatureAttribute.Exclude">
            <summary>
            Gets or sets the value indicating whether member or type should be excluded from the internal feature documentation.
            </summary>
        </member>
        <member name="P:Infragistics.InfragisticsFeatureAttribute.FeatureName">
            <summary>
            Gets or sets a short name description of the feature.
            </summary>
        </member>
        <member name="P:Infragistics.InfragisticsFeatureAttribute.SubFeatureName">
            <summary>
            Gets or sets a more granular sub-feature name description of the feature.
            </summary>
        </member>
        <member name="P:Infragistics.InfragisticsFeatureAttribute.Version">
            <summary>
            Gets or sets the version in which the feature was added.
            </summary>
        </member>
        <member name="T:Infragistics.Shared.AssemblyVersion">
            <summary>
            Contains version information for the Infragistics assemblies.
            </summary>
        </member>
        <member name="F:Infragistics.Shared.AssemblyVersion.MajorMinor">
            <summary>
            Major.Minor number portion of the assembly version
            </summary>
        </member>
        <member name="F:Infragistics.Shared.AssemblyVersion.Build">
            <summary>
            Build number portion of the assembly version
            </summary>
        </member>
        <member name="F:Infragistics.Shared.AssemblyVersion.Revision">
            <summary>
            Revision number portion of the assembly version
            </summary>
        </member>
        <member name="F:Infragistics.Shared.AssemblyVersion.Version">
            <summary>
            Assembly version number
            </summary>
        </member>
        <member name="F:Infragistics.Shared.AssemblyVersion.CompanyName">
            <summary>
            Assembly company name
            </summary>
        </member>
        <member name="F:Infragistics.Shared.AssemblyVersion.EndCopyrightYear">
            <summary>
            End year of assembly copyright
            </summary>
        </member>
        <member name="F:Infragistics.Shared.AssemblyVersion.SatelliteContractVersion">
            <summary>
            The assembly version number for the satellite assemblies.
            </summary>
        </member>
        <member name="F:Infragistics.Shared.AssemblyVersion.Configuration">
            <summary>
            The current build configuration for the assembly.
            </summary>
        </member>
    </members>
</doc>
